Skip to content

Commit 00ea579

Browse files
aldarundpi0
authored andcommitted
fix(nuxt-start): add missing dependencies (nuxt#3832)
1 parent bceddf5 commit 00ea579

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

packages/nuxt-start/package.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@ export default (pkg, { load }) => {
3131
dist: 'dist/nuxt-start.js',
3232
sources: [nuxt],
3333
extras: [
34-
'minimist'
34+
'minimist',
35+
'vue-no-ssr',
36+
'vue-router',
37+
'vuex'
3538
],
3639
exclude: [
3740
'jsdom'

packages/nuxt-start/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@
5050
},
5151
"dependencies": {
5252
"minimist": "^1.2.0",
53+
"vue-no-ssr": "^0.2.2",
54+
"vue-router": "^3.0.1",
55+
"vuex": "^3.0.1",
5356
"lodash": "^4.17.10",
5457
"hash-sum": "^1.0.2",
5558
"consola": "^1.4.3",

0 commit comments

Comments
 (0)