Angular 2 AOT - 无法解析$$ _ gendir ... ngfactory

时间:2017-09-18 12:37:08

标签: angular webpack angular2-aot

https://github.com/stefankendall/broken-aot

我正在尝试使用webpack和gulp设置一个简单的AOT angular 2版本。在我创建的最小例子中,我有以下内容:

./src/app/components - 主应用程序使用的组件,单独的ngmodule ./src/app/examples - 主要应用

ERROR in ./src/index.ts
Module not found: Error: Can't resolve './../$$_gendir/src/app/examples/app.module.ts.ngfactory' in '/Users/username/workpath/projectname/src'
 @ ./src/index.ts 8:32-98

根据上一篇文章,index.ts如下所示:

import 'core-js/client/shim';
import 'zone.js/dist/zone';

import '@angular/common';
import 'rxjs';

import {enableProdMode} from '@angular/core';
import {platformBrowserDynamic} from '@angular/platform-browser-dynamic';
import {AppModule} from './app/examples/app.module';

declare let process: any;
if (process.env.NODE_ENV === 'production') {
  enableProdMode();
} else {
  Error['stackTraceLimit'] = Infinity; // tslint:disable-line:no-string-literal
  require('zone.js/dist/long-stack-trace-zone'); // tslint:disable-line:no-var-requires
}

platformBrowserDynamic().bootstrapModule(AppModule);

这会从AppModule加载./src/app/examples/app.module.ts,如下所示:

import {CUSTOM_ELEMENTS_SCHEMA, NgModule} from '@angular/core';
import {FormsModule} from '@angular/forms';
import {BrowserModule} from '@angular/platform-browser';

import {MainComponent} from './MainComponent';
import {AppComponent} from './AppComponent';
import {routing} from './routes';
import {ComponentsModule} from '../components/index';

@NgModule({
  imports: [
    BrowserModule,
    ComponentsModule,
    FormsModule,
    routing
  ],
  declarations: [
    AppComponent,
    MainComponent
  ],
  bootstrap: [AppComponent],
  schemas: [CUSTOM_ELEMENTS_SCHEMA]
})
export class AppModule {
}

在没有AOT的情况下在本地运行工作正常,但尝试使用以下webpack配置进行AOT构建会产生错误:

const webpack = require('webpack');
const conf = require('./gulp.conf');
const path = require('path');

const HtmlWebpackPlugin = require('html-webpack-plugin');
const FailPlugin = require('webpack-fail-plugin');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const autoprefixer = require('autoprefixer');
const AotPlugin = require('@ngtools/webpack').AotPlugin;
const CopyWebpackPlugin = require('copy-webpack-plugin');

module.exports = {
  entry: {
    app: './src/index.ts'
  },
  module: {
    loaders: [
      {
        test: /\.json$/,
        loaders: [
          'json-loader'
        ]
      },
      {
        test: /\.(ttf|otf|eot|svg|png|jpg|woff(2)?)(\?[a-z0-9]+)?$/,
        loader: 'file-loader'
      },
      {
        test: /\.ts$/,
        exclude: /node_modules/,
        loader: 'tslint-loader',
        enforce: 'pre'
      },
      {
        test: /\.css$/,
        loaders: ExtractTextPlugin.extract({
          fallback: 'style-loader',
          use: 'css-loader?minimize!sass-loader!postcss-loader'
        })
      },
      {
        test: /\.scss$/,
        loaders: ['raw-loader', 'sass-loader']
      },
      {
        test: /\.ts$/,
        exclude: /node_modules/,
        loaders: [
          '@ngtools/webpack'
        ]
      },
      {
        test: /\.html$/,
        loaders: [
          'html-loader'
        ]
      }
    ]
  },
  plugins: [
    new webpack.optimize.OccurrenceOrderPlugin(),
    new webpack.NoEmitOnErrorsPlugin(),
    FailPlugin,
    new HtmlWebpackPlugin({
      template: conf.path.src('index.html')
    }),
    new webpack.ContextReplacementPlugin(
      /angular(\\|\/)core(\\|\/)(esm(\\|\/)src|src)(\\|\/)linker/,
      conf.paths.src
    ),
    new webpack.DefinePlugin({
      'process.env.NODE_ENV': '"production"'
    }),
    new ExtractTextPlugin('index-[contenthash].css'),
    new webpack.optimize.CommonsChunkPlugin({name: 'vendor'}),
    new webpack.LoaderOptionsPlugin({
      options: {
        postcss: () => [autoprefixer],
        resolve: {},
        ts: {
          configFileName: 'tsconfig.json'
        },
        tslint: {
          configuration: require('../tslint.json')
        }
      }
    }),
    new CopyWebpackPlugin([
      {from: 'index.html'}
    ]),
    new webpack.ProvidePlugin({
      $: 'jquery',
      jQuery: 'jquery',
      'window.jQuery': 'jquery',
      Tether: 'tether'
    }),
    new AotPlugin({
      tsConfigPath: './tsconfig.json',
      entryModule: path.resolve('./src/app/examples/app.module.ts#AppModule')
    }),
    new webpack.optimize.UglifyJsPlugin({
      output: {comments: false},
      compress: {unused: true, dead_code: true, warnings: false} // eslint-disable-line camelcase
    })
  ],
  output: {
    path: path.join(process.cwd(), conf.paths.dist, 'aot'),
    filename: '[name]-[hash].js'
  },
  resolve: {
    extensions: [
      '.webpack.js',
      '.web.js',
      '.js',
      '.ts'
    ]
  }
};

我错过了什么?

3 个答案:

答案 0 :(得分:1)

AOT坏了。不要打扰。

编辑:如果你从一开始就拥有它就没问题。但是,转换项目几乎是不可能的。

答案 1 :(得分:0)

完整堆栈跟踪可以在这里提供帮助。我遇到了同样的问题,然后试图找到与AOT 编译相关的任何原因而没有任何成功。 我的原因是装载机与 linting 相关,我也可以看到你也使用它。 TSLint被强制运行为" pre",据我所知,在linter运行时没有生成* .ngfactory.ts,因此它失败了。是的,禁用此tslint-loader帮助,所有编译成功。

有趣的是,我无法以任何方式强制tslint忽略bootstrap文件中的导入:加载器中的exclude选项和tslint:disable*指令都没有帮助。此外,将短绒作为" post"或普通装载机也没有帮助。我甚至试图将工厂导入提取到另一个文件中(与AOT引导条目分开,我认为无论是否可以加载它都可以加载),所以我提取了导入并忽略了那个单独的文件,但仍然没有运气。

我认为暂时没有办法解决这个问题,老实说,它阻止我使用AOT。

我向tslint-loader人(https://github.com/wbuchwalter/tslint-loader/issues/83)写了这个问题,也许他们会提出一些有用的建议。

答案 2 :(得分:0)

我也看到这个错误的时间最长。对我有用的是更改@ngtools/webpack模块以处理ngfactory文件。

在您的示例中,它看起来像这样:

  {
    test: /(?:\.ngfactory\.js|\.ngstyle\.js|\.ts)$/,
    exclude: /node_modules/,
    loaders: [
      '@ngtools/webpack'
    ]
  },

希望有所帮助!