私は Angular 2 アプリケーションのプロダクション ビルドに取り組んでおり、パッケージ サイズを縮小するために Angular 2 AoT ビルド プロセスを使用しようとしています (ドキュメントはこちら) 。
aot コンパイラ CLI とロールアップ CLI を介してビルドが機能し、期待どおりの出力が得られました。私のbundle.jsファイルは〜2kです。付随するソース マップ ファイルがあります。わーい!
次に、ロールアップを既存の gulp ビルドに組み込んでみました。ソース マップがバンドル内でインライン化されて 2MB を超えることを除いて、すべてが機能します。さらに、ソース マップ ファイルも生成されます。インライン ソース マップを手動で削除すると、バンドルのサイズが 2k まで減少します。
私の質問は、インライン ソース マップなしで bundle.js を生成するにはどうすればよいですか?
私が試したこと: SO の検索、Angular2 docs、 rollup -stream docs、およびgulp-sourcemap docs の精査。この問題に具体的に対処するものは見つかりませんでした。
以下は、関連する構成ファイルです
AoT 固有の tsconfig ファイル(tsconfig-aot.json):
{
"compilerOptions": {
"target": "es5",
"module": "es2015",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [ "es2015", "dom" ],
"removeComments": false,
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"typeRoots": [
"node_modules/@types/"
]
},
"include": [
"app/**/*.ts"
],
"exclude": [
"node_modules",
"wwwroot"
],
"angularCompilerOptions": {
"genDir": "aot",
"skipMetadataEmit": true
}
}
ロールアップ構成(destおよびsourceMapFileファイルパスをコメントアウトして、それがgulpをオフにしているかどうかを確認しようとしましたが、効果はありませんでした):
import rollup from 'rollup';
import nodeResolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import uglify from 'rollup-plugin-uglify';
let config = {
entry: 'app/app-aot.js',
dest: 'wwwroot/dist/bundle.js', // output a single application bundle
sourceMap: true,
sourceMapFile: 'wwwroot/dist/bundle.js.map',
format: 'iife',
plugins: [
nodeResolve({jsnext: true, module: true}),
commonjs({
include: ['node_modules/rxjs/**']
}),
uglify()
]
}
//paths are relative to the execution path
export default config
そしてgulpファイル:
var gulp = require('gulp');
var del = require('del');
var helpers = require('./config/helpers');
var exec = require('child_process').exec;
var merge = require('merge-stream');
var rename = require('gulp-rename');
var rollup = require('rollup-stream');
var source = require('vinyl-source-stream');
var buffer = require('vinyl-buffer');
var sourcemap = require('gulp-sourcemaps');
var paths = {
app: helpers.root('app/**/*'),
bootstrap: helpers.root('app/assets/bootstrap/'),
images: helpers.root('app/assets/images/')
};
gulp.task('clean', function () {
return del(['wwwroot/**/*']);
});
gulp.task('clean-aot', ['clean'], function() {
return del(['aot/**/*']);
});
gulp.task('bundle-aot', ['clean', 'clean-aot'], function(callBack) {
exec('\"node_modules/.bin/ngc\" -p tsconfig-aot.json', function(err, stdout, stderr) {
console.log(stdout);
console.log(stderr);
callBack(err);
});
});
gulp.task('bundle-rollup', ['bundle-aot'], function() {
return rollup('rollup-config.js')
.pipe(source('bundle.js'))
.pipe(buffer())
.pipe(sourcemap.init({ loadMaps: true }))
.pipe(sourcemap.write('.'))
.pipe(gulp.dest('wwwroot/dist'));
});
gulp.task('bundle-copy-files', ['bundle-rollup'], function() {
var bsCss = gulp.src(paths.bootstrap + '/css/*.min.css').pipe(gulp.dest('wwwroot/assets/bootstrap/css/'));
var bsFonts = gulp.src(paths.bootstrap + '/fonts/*').pipe(gulp.dest('wwwroot/assets/bootstrap/fonts/'));
var images = gulp.src(paths.images + '*').pipe(gulp.dest('wwwroot/assets/images/'));
var shim = gulp.src('node_modules/core-js/client/shim.min.js').pipe(gulp.dest('wwwroot/'));
var zone = gulp.src('node_modules/zone.js/dist/zone.min.js').pipe(gulp.dest('wwwroot/'));
var index = gulp.src('app/index-aot.html').pipe(rename('index.html')).pipe(gulp.dest('wwwroot/'));
return merge(bsCss, bsFonts, images, shim, zone, index);
});
gulp.task('bundle', ['clean', 'clean-aot', 'bundle-aot', 'bundle-rollup', 'bundle-copy-files']);
編集: CLIでgulp実行ロールアップを行うことで回避策を見つけました。ただし、gulpまたはrollup構成で何が間違っているのかを知りたいです。
gulp.task('bundle-rollup', ['bundle-aot'], function(callBack) {
exec('\"node_modules/.bin/rollup\" -c rollup-config.js', function (err, stdout, stderr) {
console.log(stdout);
console.log(stderr);
callBack(err);
});
});