【发布时间】:2016-05-31 13:56:29
【问题描述】:
我们使用 gulp 进程(使用 aurelia-bundler)捆绑我们的应用程序。到目前为止,捆绑过程目标文件夹位于名为“dist”的项目文件夹中。我们需要将目标文件夹放在项目文件夹之外
gulp.task('bundle', function (callback) {
runSequence('unbundle',
'bundle-config',
'copy-app-files',
'compress',
function () {
});
});
【问题讨论】: