Skip to content

Commit

Permalink
Updating dependencies in the example app
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrusstoller committed Feb 13, 2022
1 parent 7bd8a8c commit 6340668
Show file tree
Hide file tree
Showing 3 changed files with 1,761 additions and 1,712 deletions.
19 changes: 9 additions & 10 deletions example/package.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
{
"name": "vue-link-project",
"version": "0.1.1",
"version": "0.2.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.2.0",
"eslint-plugin-vue": "^7.6.0",
"ssri": "^8.0.1",
"vue": "^2.6.11",
"vue": "^3.2.31",
"vue-plaid-link2": "file:.."
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.4.4",
"@vue/cli-plugin-eslint": "^4.4.4",
"@vue/cli-service": "^4.4.4",
"vue-template-compiler": "^2.5.17"
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^7.0.0"
},
"eslintConfig": {
"root": true,
Expand Down
8 changes: 3 additions & 5 deletions example/src/main.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import Vue from 'vue'
import { createApp } from 'vue'
import App from './App.vue'

Vue.config.productionTip = false
const app = createApp(App)

new Vue({
render: h => h(App)
}).$mount('#app')
app.mount('#app')
Loading

0 comments on commit 6340668

Please sign in to comment.