@ngtools/webpack 8.0.2 → 8.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ngtools/webpack",
3
- "version": "8.0.2",
3
+ "version": "8.0.3",
4
4
  "description": "Webpack plugin that AoT compiles your Angular components and modules.",
5
5
  "main": "./src/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -25,7 +25,7 @@
25
25
  },
26
26
  "homepage": "https://github.com/angular/angular-cli",
27
27
  "dependencies": {
28
- "@angular-devkit/core": "8.0.2",
28
+ "@angular-devkit/core": "8.0.3",
29
29
  "enhanced-resolve": "4.1.0",
30
30
  "rxjs": "6.4.0",
31
31
  "tree-kill": "1.2.1",
@@ -626,7 +626,6 @@ class AngularCompilerPlugin {
626
626
  }
627
627
  async _make(compilation) {
628
628
  benchmark_1.time('AngularCompilerPlugin._make');
629
- this._emitSkipped = true;
630
629
  // tslint:disable-next-line:no-any
631
630
  if (compilation._ngToolsWebpackPluginInstance) {
632
631
  throw new Error('An @ngtools/webpack plugin already exist for this compilation.');
@@ -7,6 +7,7 @@
7
7
  */
8
8
  /// <reference types="node" />
9
9
  import { logging, virtualFs } from '@angular-devkit/core';
10
+ import { CompilerOptions } from '@angular/compiler-cli';
10
11
  import * as fs from 'fs';
11
12
  import * as ts from 'typescript';
12
13
  export declare enum PLATFORM {
@@ -48,7 +49,7 @@ export interface AngularCompilerPluginOptions {
48
49
  };
49
50
  additionalLazyModuleResources?: string[];
50
51
  contextElementDependencyConstructor?: ContextElementDependencyConstructor;
51
- compilerOptions?: ts.CompilerOptions;
52
+ compilerOptions?: CompilerOptions;
52
53
  host?: virtualFs.Host<fs.Stats>;
53
54
  platformTransformers?: ts.TransformerFactory<ts.SourceFile>[];
54
55
  }