@ngtools/webpack 8.2.1 → 8.2.2

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.2.1",
3
+ "version": "8.2.2",
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.2.1",
28
+ "@angular-devkit/core": "8.2.2",
29
29
  "enhanced-resolve": "4.1.0",
30
30
  "rxjs": "6.4.0",
31
31
  "tree-kill": "1.2.1",
@@ -464,7 +464,8 @@ class AngularCompilerPlugin {
464
464
  || this._unusedFiles.has(fileName)) {
465
465
  continue;
466
466
  }
467
- compilation.warnings.push(`${fileName} is part of the TypeScript compilation but it's unused.`);
467
+ compilation.warnings.push(`${fileName} is part of the TypeScript compilation but it's unused.\n` +
468
+ `Add only entry points to the 'files' or 'include' properties in your tsconfig.`);
468
469
  this._unusedFiles.add(fileName);
469
470
  }
470
471
  }