1

有没有办法au build从特定文件夹的上下文中执行?

我的文件夹结构是:

- 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

4

1 回答 1

3

使用以下cwd选项gulp-shell

gulp.task('build-main', shell.task('au build', {cwd:'main'}));
gulp.task('build-another', shell.task('au build', {cwd:'another'}));
于 2016-10-10T05:58:23.640 回答