Skip to content

Commit

Permalink
Updating dependencies to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
shama committed Jan 4, 2024
1 parent 8382083 commit 7cdfc92
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 17 deletions.
18 changes: 8 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,15 @@
"build": "webpack --mode production --progress"
},
"devDependencies": {
"@webpack-cli/serve": "^2.0.1",
"css-loader": "^6.8.1",
"npm-check-updates": "^4.1.2",
"vue": "2.6.11",
"vue-loader": "^17.2.2",
"vue-server-renderer": "2.7.14",
"vue-template-compiler": "2.6.11",
"webpack": "5.76.2",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.13.1",
"vue": "^3.4.5",
"vue-loader": "^17.4.2",
"vue-server-renderer": "^2.7.16",
"vue-template-compiler": "^2.7.16",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"xhr": "^2.6.0",
"ynab": "1.47.0"
"ynab": "^2.2.0"
}
}
10 changes: 3 additions & 7 deletions src/main.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
import Vue from 'vue';
import App from './App.vue';
import { createApp } from "vue";
import App from "./App.vue";

// Create our Vue App and replace the <div id="app"></div> with it
new Vue({
el: '#app',
render: h => h(App)
});
createApp(App).mount("#app");

0 comments on commit 7cdfc92

Please sign in to comment.