让vs.net 编译的时候自动执行webpack
- 首先 管理员模式下打开 “Developer Command Prompt for VS2015", 是管理员模式啊!
- 然后进入 cd c:\Program Files (x86)\Microsoft Visual Studio 14.0\Web\External
- 执行:npm install webpack。 绝对不能带 -g
然后按照其他文章。写个webpack.config.js之类的
然后在Project.json 随便加你相加的东西就行了。
"scripts": {
"prepublish": [ "bower install", "webpack" ],
"precompile": [ "webpack" ]
}
然后非常顺利。
后记
用 c:\Program file\Nodejs 下面的是不行的:
- 无论是配置tools->options->projects and Solution -》external tools ,添加 nodejs or webpack.cmd path 都是不行的。大家不要浪费时间。
- 在系统 配置 %path%, 还是不行。
时间: 2024-10-11 06:38:28