我正在尝试按https://angular.io/docs/ts/latest/cookbook/aot-compiler.html#!#tree-shaking
实施AOT和汇总我运行rollup per:“node_modules / .bin / rollup”-c scripts / rollup-config.js
,结果是一个build.js文件,只包含条目文件,没有别的。没有错误,只有一个警告:“'默认'是从外部模块'汇总'导入但从未使用过”
“aot”文件夹确实包含所有相关的已编译的ngfactory文件。
以下是输入文件:
import { platformBrowser } from '@angular/platform-browser';
import { AppModuleNgFactory } from '../aot/app/app.module.ngfactory';
platformBrowser().bootstrapModuleFactory(AppModuleNgFactory);
rollup-js.config:
import rollup from 'rollup'
import nodeResolve from 'rollup-plugin-node-resolve'
import commonjs from 'rollup-plugin-commonjs';
import uglify from 'rollup-plugin-uglify'
export default {
entry: 'scripts/app/main.js',
dest: 'scripts/app/build.js', // output a single application bundle
sourceMap: true,
sourceMapFile: 'scripts/app/build.js.map',
format: 'iife',
onwarn: function(warning) {
// Skip certain warnings
// should intercept ... but doesn't in some rollup versions
if ( warning.code === 'THIS_IS_UNDEFINED' ) { return; }
// intercepts in some rollup versions
if ( warning.indexOf("The 'this' keyword is equivalent to 'undefined'") > -1 ) { return; }
// console.warn everything else
console.warn( warning.message );
},
plugins: [
nodeResolve({jsnext: true, module: true}),
commonjs({
include: '../node_modules/rxjs/**'
}),
uglify()
]
}
和我的systemjs以防万一相关:
(function (global) {
System.config({
paths: {
// paths serve as alias
'npm:': 'libs/'
},
// map tells the System loader where to look for things
map: {
// our app is within the app folder
app: 'approot',
appjit: 'approot',
// 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',
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api',
'jquery': 'npm:jquery/dist/jquery.min.js',
'moment': 'npm:moment/moment.js',
'ng2-bootstrap/ng2-bootstrap': 'npm:ng2-bootstrap/bundles/ng2-bootstrap.umd.js',
'ng2-select/ng2-select': 'npm:ng2-select/ng2-select.js',
"ng2-popover": "libs/ng2-popover",
'angular2-ui-switch': 'libs/angular2-ui-switch/dist/index.js',
"angular2-text-mask": "libs/angular2-text-mask/dist",
"text-mask-core": "libs/text-mask-core/"
},
// packages tells the System loader how to load when no filename and/or no extension
packages: {
app: {
main: './app/main.js',
defaultExtension: 'js'
},
appjit: {
main: './app/main-jit.js',
defaultExtension: 'js'
},
rxjs: {
defaultExtension: 'js'
},
'angular-in-memory-web-api': {
main: './index.js',
defaultExtension: 'js'
},
'libs/ng2-select': {
defaultExtension: 'js'
},
'libs/ng2-popover': {
main: "index.js",
defaultExtension: 'js'
},
'libs/angular2-text-mask/dist': {
main: "angular2TextMask.js",
defaultExtension: 'js'
},
'libs/text-mask-core/': {
main: "textMaskCore.js",
defaultExtension: 'js'
},
'libs/angular2-ui-switch': {
main: "index.js",
defaultExtension: 'js'
}
}
});
})(this);
我的文件夹结构如下:
我的环境:
答案 0 :(得分:6)
在你的[visual studio project] / scripts / aot文件夹中,应该有一个main.ts文件,visual studio会使用t sconfig.json将其编译为main.js但不是tsconfig-aot.json < / strong>,检查你的main.js文件,如果它看起来像是
"use strict";
var platform_browser_1 = require("@angular/platform-browser");
var app_module_ngfactory_1 = require("./app.module.ngfactory");
platform_browser_1.platformBrowser().bootstrapModuleFactory(app_module_ngfactory_1.AppModuleNgFactory);
您需要更新 tsconfig.json :
{
"module": "commonjs",
}
到
{
"module": "es2015",
}
答案 1 :(得分:2)
我自己也正在关注官方angular2 AOT guilde,由于缺乏一个简单的工作示例,我创建了这个github repository。我希望它可以帮助你。
如果你是一名Windows用户,你绝对应该能够在git-bash终端上工作(由我测试)。
答案 2 :(得分:1)
要使AOT正常工作,您需要确保生成es6模块加载语法:
Rollup只能使用具有导入和导出语句的Tree Shake ES2015模块。
tsconfig.json:
{
"compilerOptions" {
"module": "es6",
...
}
}