このレベルで理解する重要なことは、次の構成を使用すると、コンパイルされたJSファイルを直接連結できないことです。
TypeScriptコンパイラー構成で:
{
"compilerOptions": {
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"declaration": false,
"stripInternal": true,
"module": "system",
"moduleResolution": "node",
"noEmitOnError": false,
"rootDir": ".",
"inlineSourceMap": true,
"inlineSources": true,
"target": "es5"
},
"exclude": [
"node_modules"
]
}
HTMLで
System.config({
packages: {
app: {
defaultExtension: 'js',
format: 'register'
}
}
});
実際、これらのJSファイルには匿名モジュールが含まれます。匿名モジュールは、System.register
最初のパラメーターとしてモジュール名を使用しますが、モジュール名がないJSファイルです。これは、systemjsがモジュールマネージャとして構成されている場合に、typescriptコンパイラがデフォルトで生成するものです。
したがって、すべてのモジュールを単一のJSファイルにoutFile
含めるには、TypeScriptコンパイラー構成内のプロパティーを利用する必要があります。
これを行うには、次の内部gulpを使用できます。
const gulp = require('gulp');
const ts = require('gulp-typescript');
var tsProject = ts.createProject('tsconfig.json', {
typescript: require('typescript'),
outFile: 'app.js'
});
gulp.task('tscompile', function () {
var tsResult = gulp.src('./app/**/*.ts')
.pipe(ts(tsProject));
return tsResult.js.pipe(gulp.dest('./dist'));
});
これは他のいくつかの処理と組み合わせることができます:
- コンパイルされたTypeScriptファイルを醜くする
app.js
ファイルを作成する
vendor.js
サードパーティライブラリのファイルを作成する
boot.js
アプリケーションをブートストラップするモジュールをインポートするファイルを作成します。このファイルは、ページの最後に含める必要があります(すべてのページがロードされたとき)。
index.html
これらの2つのファイルを考慮に入れて更新するには
以下の依存関係がgulpタスクで使用されます。
- ガク・コンキャット
- gulp-html-replace
- ガプタイプスクリプト
- ガクガシ
以下はサンプルなので、適応させることができます。
app.min.js
ファイルを作成する
gulp.task('app-bundle', function () {
var tsProject = ts.createProject('tsconfig.json', {
typescript: require('typescript'),
outFile: 'app.js'
});
var tsResult = gulp.src('app/**/*.ts')
.pipe(ts(tsProject));
return tsResult.js.pipe(concat('app.min.js'))
.pipe(uglify())
.pipe(gulp.dest('./dist'));
});
vendors.min.js
ファイルを作成する
gulp.task('vendor-bundle', function() {
gulp.src([
'node_modules/es6-shim/es6-shim.min.js',
'node_modules/systemjs/dist/system-polyfills.js',
'node_modules/angular2/bundles/angular2-polyfills.js',
'node_modules/systemjs/dist/system.src.js',
'node_modules/rxjs/bundles/Rx.js',
'node_modules/angular2/bundles/angular2.dev.js',
'node_modules/angular2/bundles/http.dev.js'
])
.pipe(concat('vendors.min.js'))
.pipe(uglify())
.pipe(gulp.dest('./dist'));
});
boot.min.js
ファイルを作成する
gulp.task('boot-bundle', function() {
gulp.src('config.prod.js')
.pipe(concat('boot.min.js'))
.pipe(uglify())
.pipe(gulp.dest('./dist'));
});
config.prod.js
単純に次のものが含まれます。
System.import('boot')
.then(null, console.error.bind(console));
index.html
ファイルを更新する
gulp.task('html', function() {
gulp.src('index.html')
.pipe(htmlreplace({
'vendor': 'vendors.min.js',
'app': 'app.min.js',
'boot': 'boot.min.js'
}))
.pipe(gulp.dest('dist'));
});
これindex.html
は次のようになります。
<html>
<head>
<!-- Some CSS -->
<!-- build:vendor -->
<script src="node_modules/es6-shim/es6-shim.min.js"></script>
<script src="node_modules/systemjs/dist/system-polyfills.js"></script>
<script src="node_modules/angular2/bundles/angular2-polyfills.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="node_modules/rxjs/bundles/Rx.js"></script>
<script src="node_modules/angular2/bundles/angular2.dev.js"></script>
<script src="node_modules/angular2/bundles/http.dev.js"></script>
<!-- endbuild -->
<!-- build:app -->
<script src="config.js"></script>
<!-- endbuild -->
</head>
<body>
<my-app>Loading...</my-app>
<!-- build:boot -->
<!-- endbuild -->
</body>
</html>
System.import('boot');
すべてのアプリコンポーネントがapp.min.js
ファイルから登録されるのを待つには、本文の最後でを実行する必要があることに注意してください。
ここでは、CSSおよびHTMLの縮小を処理する方法については説明しません。