我正在使用scripts
package.json 文件中的部分来存储一些我必须定期运行的命令。
"scripts": {
"test": "./test/phantomjs ./test/js/run_jasmine_test.coffee ./test/index.html",
"rjs": "r.js -o ./js/app.build.js",
"less": "lessc -x ./css/app.less > ./css/app.css"
}
在每个命令中,我./
在路径的开头都有一个 - 这就是为什么我只能npm run-script rjs
从项目的根目录调用。有没有办法在 package.json 中引用项目的根目录,以便我可以npm test
从项目中的任何地方运行,例如?