Gulp,Typescript和Uglify:错误:文件不在源地图中

时间:2015-12-10 19:18:40

标签: gulp source-maps gulp-sourcemaps

对于我正在开发的应用程序,我也在学习Gulp并使用源映射。该应用程序是Typescript和Javascript的混合体。文件连接和缩小。通过gulp-uglify传递文件时会发生错误:

\src\App\node_modules\gulp-uglify\node_modules\vinyl-sourcemaps-apply\node_modules\source-map\lib\source-map\source-map-consumer.js:415
  throw new Error('"' + aSource + '" is not in the SourceMap.');
        ^
Error: "Common.ts" is not in the SourceMap.
at SourceMapConsumer_sourceContentFor [as sourceContentFor] (Z:\Dev\financial-app\src\App\node_modules\gulp-uglify\node_modules\vinyl-sourcemaps-apply\node_modules\source-map\lib\source-map\source-map-consumer.js:415:13)
at SourceMapGenerator.<anonymous> (Z:\Dev\financial-app\src\App\node_modules\gulp-uglify\node_modules\vinyl-sourcemaps-apply\node_modules\source-map\lib\source-map\source-map-generator.js:233:42)
at Array.forEach (native)

仅在使用gulp-sourcemaps时才会发生这种情况。当我删除管道中的源映射生成调用时,问题不会发生,但我没有任何源映射。

return merge(
        // TS compile
        gulp.src(filePath.appjs.src.ts)
          .pipe(sourcemaps.init())
          .pipe(ts(tsProject))
          .pipe(sourcemaps.write()),

        // JS compile
        gulp.src(filePath.appjs.src.js)
    )
    .pipe(sourcemaps.init({loadMaps: true}))
    .pipe(concat('appscripts.js'))
    .pipe(size({ title: 'APPJS' }))
    .pipe(sourcemaps.write())
    .pipe(gulp.dest(filePath.appjs.dest))
    //.pipe(uglify(filePath.uglifyOptions))
    .pipe(concat('appscripts.min.js'))
    .pipe(size({ title: 'APPJS minified' }))
    .pipe(gulp.dest(filePath.appjs.dest));

也许有用的知道,打字稿可以在./js/ts/./js/App中的javascript中找到。

0 个答案:

没有答案