我是npm newbee并尝试使用纯粹的npm进行非常简单的构建过程(没有grunt,gulp等)。我的所有包json脚本都可以正常工作,负责监视SCSS文件并在文件更改时运行编译器 这是我的Package.json文件,应该自我解释:
{
"name": "test-site.com",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"scss": "node-sass --indent-type tab --indent-width 1 --output-style expanded -o dist/css src/scss",
"autoprefixer": "postcss -u autoprefixer -r dist/css/app.css",
"build:css": "npm run scss && npm run autoprefixer",
"serve": "browser-sync start --server --files 'dist/css/*.css, **/*.html, !node_modules/**/*.html'",
"reload": "browser-sync reload",
"watch:css": "onchange 'src/scss/*.scss' -- npm run build:scss",
"build:all": "npm run build:css",
"watch:all": "npm-run-all -p serve watch:css",
"postinstall": "npm run build:all && npm run watch:all"
},
"author": "Homam",
"license": "ISC",
"devDependencies": {
"autoprefixer": "latest",
"browser-sync": "latest",
"node-sass": "latest",
"npm-run-all": "latest",
"onchange": "latest",
"postcss-cli": "latest"
}
}
有问题的剧本是“watch:css” 当我更改我的“index.html”时,它会相应地更改网页,但是当我更改任何我的SCSS文件时,没有任何更改效果。
答案 0 :(得分:11)
你在Windows上吗? 如果是这样,请尝试使用转换README中所述的转义双引号替换单引号。
"watch:css": "onchange \"src/scss/*.scss\" -- npm run build:scss",
答案 1 :(得分:5)
可能是因为
"watch:css": "onchange 'src/scss/*.scss' -- npm run build:scss",
是否引用了build:未定义的scss?你已经定义了“scss”和“build:css”。试试:
"watch:css": "onchange 'src/scss/*.scss' -- npm run build:css",