@nx/webpack 20.0.0-beta.6 → 20.0.0-beta.7

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/index.js CHANGED
@@ -13,7 +13,7 @@ Object.defineProperty(exports, "useLegacyNxPlugin", { enumerable: true, get: fun
13
13
  // Exported for backwards compatibility in case a plugin is using the old name.
14
14
  /** @deprecated Use `configurationGenerator` instead. */
15
15
  exports.webpackProjectGenerator = configuration_1.configurationGenerator;
16
- // TODO(v20): Remove this in favor of deep imports in order to load configs faster (150-200ms faster).
16
+ // TODO(v21): Remove this in favor of deep imports in order to load configs faster (150-200ms faster).
17
17
  /** @deprecated Use NxAppWebpackPlugin from `@nx/webpack/app-plugin` instead. */
18
18
  exports.NxWebpackPlugin = nx_app_webpack_plugin_1.NxAppWebpackPlugin;
19
19
  /** @deprecated Use NxTsconfigPathsWebpackPlugin from `@nx/webpack/tsconfig-paths-plugin` instead. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/webpack",
3
- "version": "20.0.0-beta.6",
3
+ "version": "20.0.0-beta.7",
4
4
  "private": false,
5
5
  "description": "The Nx Plugin for Webpack contains executors and generators that support building applications using Webpack.",
6
6
  "repository": {
@@ -69,8 +69,8 @@
69
69
  "webpack-dev-server": "^5.0.4",
70
70
  "webpack-node-externals": "^3.0.0",
71
71
  "webpack-subresource-integrity": "^5.1.0",
72
- "@nx/devkit": "20.0.0-beta.6",
73
- "@nx/js": "20.0.0-beta.6"
72
+ "@nx/devkit": "20.0.0-beta.7",
73
+ "@nx/js": "20.0.0-beta.7"
74
74
  },
75
75
  "publishConfig": {
76
76
  "access": "public"
@@ -47,7 +47,7 @@ export interface WebpackExecutorOptions {
47
47
  extractLicenses?: boolean;
48
48
  fileReplacements?: FileReplacement[];
49
49
  generatePackageJson?: boolean;
50
- // TODO(v20): Remove this option
50
+ // TODO(v21): Remove this option
51
51
  /** @deprecated set webpackConfig and provide an explicit webpack.config.js file (See: https://nx.dev/recipes/webpack/webpack-config-setup) */
52
52
  isolatedConfig?: boolean;
53
53
  standardWebpackConfigFunction?: boolean;