Laravel 5.3的gulpfile.js是这样的:
var elixir = require('laravel-elixir');
require('laravel-elixir-vue');
elixir(function(mix) {
mix.sass('app.scss')
.webpack('app.js');
});
上面可以直接编译压缩scss和js。问题是如果用compass写的scss文件,那应该怎么编译呢?
试过"laravel-elixir-sass-compass": "^0.5.0",这个包,好像很久没更新了,安装有问题:
$ npm install
npm ERR! Windows_NT 10.0.14393
npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Users\\dell\\AppData\\Roaming\\npm\\node_modules\\npm\\bin\\npm-cli.js" "install"
npm ERR! node v7.0.0-nightly2016080329e49fc286
npm ERR! npm v3.10.5
npm ERR! cb is not a function
npm ERR!
npm ERR! If you need help, you may report this error at:
npm ERR! <https://github.com/npm/npm/issues>
npm ERR! Windows_NT 10.0.14393
npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Users\\dell\\AppData\\Roaming\\npm\\node_modules\\npm\\bin\\npm-cli.js" "install"
npm ERR! node v7.0.0-nightly2016080329e49fc286
npm ERR! npm v3.10.5
npm ERR! cb is not a function
npm ERR!
npm ERR! If you need help, you may report this error at:
npm ERR! <https://github.com/npm/npm/issues>
npm ERR! Please include the following file with any support request:
npm ERR! D:\wnmp\www\laravel-5-3-demo\npm-debug.log
这个包安装没有问题的。亲测可用。
安装后在gulpfile.js中写如下代码
然后执行 npm run dev
在这里有一个注意的地方
如果使用的node版本是6.0以上版本,会报错的。需要使用6.0一下版本
我使用的是n工具来管理自己的node版本的。我安装了5.11.0的就可以使用