Npm start从.nuxt删除新文件

时间:2018-09-07 14:21:16

标签: node.js npm nuxt.js feathersjs npm-start

每当我运行“ npm start”时,它总是删除甚至添加到.nuxt文件夹中的“重置”文件。例如,当我在.nuxt>“ components”文件夹中添加新组件作为示例时,请在cmd中按CTRL + C停止服务器,然后重新开始运行“ npm start”,它将始终“重置”。 nuxt文件夹恢复到初始/安装状态。为什么会这样?
我在后端使用“ FeathersJS ”,在前端使用“ NuxtJS ”。

package.json:

"scripts": {
"test": "npm run eslint && npm run mocha",
"eslint": "eslint src/. test/. --config .eslintrc.js",
"build": "nuxt build",
"dev": "SET DEBUG=nuxt:* && nodemon --watch src/ --watch config/ src/index.js",
"prestart": "npm run build",
"start": "SET NODE_ENV=production && nodemon src/",
"mocha": "mocha test/ --recursive"
},

2 个答案:

答案 0 :(得分:2)

您甚至不应从.nuxt添加或删除任何内容。它是.nuxt生成的文件。您应该只修改源,而不是生成的文件。

答案 1 :(得分:-1)

我现在找到了自己的解决方案。该解决方案可以在这里找到,以供将来参考:https://github.com/fexell/FeathersJS-NuxtJS