2016-10-09 89 views
0

有沒有辦法從特定文件夾的上下文執行au buildAurelia CLI和Gulp Shell

我的文件夾結構是:

- UI 
    |-main 
    | | <aurelia_project_here> 
    | 
    |-another 
    | | <aurelia_project_here> 
    | 
    |-gulpfile.js 

gulpfile.js看起來像:

var gulp = require('gulp'), 
    shell = require('gulp-shell'); 

gulp.task('build-main', shell.task(['cd main', 'au build', 'cd ..'])); 
gulp.task('build-another', shell.task(['cd another', 'au build', 'cd ..'])); 

gulp.task('build', gulp.parallel('build-main', 'build-another', done => done())); 

我需要在各自的Aurelia大街項目目錄的上下文中執行shell ....除非你可以將它們指定到aurelia cli

回答

3

使用cwd optiongulp-shell

gulp.task('build-main', shell.task('au build', {cwd:'main'})); 
gulp.task('build-another', shell.task('au build', {cwd:'another'}));