Mam aplikację Angular 2 RC7, w której używam SystemJS do ładowania plików JavaScript.Angular 2: W jaki sposób poinformować SystemJS, aby używał pakietu?
To moja obecna konfiguracja SystemJS:
(function (global) {
System.config({
defaultExtension: 'js',
defaultJSExtensions: true,
paths: {
'npm:': 'node_modules/'
},
// Let the system loader know where to look for things
map: {
// Our app is within the app folder
app: 'app',
// Angular bundles
'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
'@angular/common': 'npm:@angular/common/bundles/common.umd.js',
'@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
// Other libraries
'rxjs': 'npm:rxjs',
'ng2-translate': 'node_modules/ng2-translate'
},
// Tell the system loader how to load when no filename and/or no extension
packages: {
app: { main: './main.js', defaultExtension: 'js' },
rxjs: { defaultExtension: 'js' },
'ng2-translate': { defaultExtension: 'js' }
}
});
})(this);
Teraz stworzyliśmy pakiet o nazwie app.bundle.min.js
, który zawiera wszystkie moje logikę aplikacji i dependencies.bundle.min.js
zawierający zależności używane.
W jaki sposób powiedzieć systemowi SystemJS, aby używał tych plików zamiast pojedynczo importować pliki?
Próbowałem zastępując w ten sposób:
<script>
System.import('app').catch(function(err){
console.error(err);
});
</script>
z:
<script src="production/dependencies.bundle.min.js"></script>
<script src="production/app.bundle.min.js"></script>
w moim index.html, ale to nie działa. Dopóki przechowuję blok skryptu System.import...
w pliku index.html, aplikacja ładuje się, ale używa pojedynczych plików zamiast pakunków.
Próbowałem też zmieniając w ten sposób:
map: {
// Our app is within the app folder
app: 'production/app.bundle.min.js',
ale to nie działało.
ten sposób wiązki są generowane przy użyciu Gulp:
gulp.task('inline-templates', function() {
return gulp.src('app/**/*.ts')
.pipe(inlineNg2Template({
UseRelativePaths: true,
indent: 0,
removeLineBreaks: true
}))
.pipe(tsc({
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": true,
"noImplicitAny": false,
"suppressImplicitAnyIndexErrors": true
}))
.pipe(gulp.dest('dist'));
});
gulp.task('bundle-app', ['inline-templates'], function() {
var builder = new systemjsBuilder('', 'app/configs/systemjs.config.js');
return builder
.bundle('dist/**/* - [@angular/**/*.js] - [rxjs/**/*.js]', 'production/app.bundle.min.js', {
minify: true,
mangle: true
})
.then(function() {
console.log('Build complete');
})
.catch(function(err) {
console.log('Build error');
console.log(err);
});
});
gulp.task('bundle-dependencies', ['inline-templates'], function() {
var builder = new systemjsBuilder('', 'app/configs/systemjs.config.js');
return builder
.bundle('dist/**/*.js - [dist/**/*.js]', 'production/dependencies.bundle.min.js', {
minify: true,
mangle: true
})
.then(function() {
console.log('Build complete');
})
.catch(function(err) {
console.log('Build error');
console.log(err);
});
});
gulp.task('production', ['bundle-app', 'bundle-dependencies'], function(){});
Podejrzewam, muszę jakoś zmienić mapowania w mojej konfiguracji SystemJS wskazać kierunku wiązki? Jak mam to zrobic?
Trudno powiedzieć, nie wiedząc dokładnie, jak pakiety są generowane – artem
Dodałem zadanie haustem na moje pytanie. –