我目前正在使用asset-builder和wiredep将我的所有依赖项连接到我的源文件,但是我想要移开凉亭并使用纱线代替。我提到的两个插件只支持bower。
我对纱线的问题是所有包都安装在./node_modules/中 凉亭有自己的文件夹./bower_components /.
答案 0 :(得分:0)
我相信this应该适合你:
var runSequence = require('run-sequence');
gulp.task('default', function (callback) {
runSequence(['tojson', 'htmlClean', 'templates', 'minify-inline'],
callback
)
})