如何将gulp-typescript输出到与源文件相同的目录?

时间:2015-04-08 02:49:42

标签: typescript gulp

我有以下管道

  function typescripts() {
    return gulp.src(paths.watchedFiles.ts)
        .pipe(cached('typescripts'))
        .pipe(plumber())
        .pipe(addsrc(paths.ts.include))
      //TODO: Need to eliminate the original source path (ex. /users/userName) from the sourcemap file.
        .pipe(sourcemaps.init())
        .pipe(ts(tsProjectMode, undefined, ts.reporter.fullReporter(true))).js
        .pipe(gulpIgnore.exclude(paths.ts.excludeFromPostCompilePipeline))
        .pipe(ngAnnotate({
          remove: false,
          add: true,
          gulpWarnings: false //typescript removes base path for some reason.  Warnings result that we don't want to see.
        }))
        .pipe(sourcemaps.write('.', {includeContent: false}))
        .pipe(gulp.dest(paths.ts.basePath));
  }

我似乎必须根据src路径的根目录制作“硬代码”dest路径。如果我的src路径为app/modules/**.ts,则我的目标路径必须为app/modules。这限制了我使用单个根src路径,我不能使用兄弟姐妹。

我希望能够创建我的src ['path1/**/*.ts', 'path2/**/*.ts]并将已编译的输出写入源文件所在的同一文件夹。

1 个答案:

答案 0 :(得分:6)

如果你有这样的源文件:

gulp.src(['path1/**/*.ts', 'path2/**/*.ts])

比它更接近:

gulp.src(['./path1/**/*.ts', './path2/**/*.ts], { base: '.' })

这意味着,您可以将目的地设置为:

gulp.dest('.')

因为那是最低的共同点。其余的由Gulp完成。