@nx/webpack 17.3.0-rc.1 → 17.3.1

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": "@nx/webpack",
3
- "version": "17.3.0-rc.1",
3
+ "version": "17.3.1",
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": {
@@ -29,7 +29,7 @@
29
29
  "migrations": "./migrations.json"
30
30
  },
31
31
  "dependencies": {
32
- "@babel/core": "^7.22.9",
32
+ "@babel/core": "^7.23.2",
33
33
  "autoprefixer": "^10.4.9",
34
34
  "babel-loader": "^9.1.2",
35
35
  "browserslist": "^4.21.4",
@@ -62,9 +62,9 @@
62
62
  "webpack-dev-server": "^4.9.3",
63
63
  "webpack-node-externals": "^3.0.0",
64
64
  "webpack-subresource-integrity": "^5.1.0",
65
- "@nx/devkit": "17.3.0-rc.1",
66
- "@nx/js": "17.3.0-rc.1",
67
- "@nrwl/webpack": "17.3.0-rc.1"
65
+ "@nx/devkit": "17.3.1",
66
+ "@nx/js": "17.3.1",
67
+ "@nrwl/webpack": "17.3.1"
68
68
  },
69
69
  "publishConfig": {
70
70
  "access": "public"
@@ -47,7 +47,7 @@ export interface WebpackExecutorOptions {
47
47
  extractLicenses?: boolean;
48
48
  fileReplacements?: FileReplacement[];
49
49
  generatePackageJson?: boolean;
50
- // TODO(v18): Remove this option
50
+ // TODO(v19): 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;
@@ -235,7 +235,7 @@
235
235
  "type": "boolean",
236
236
  "description": "Do not apply Nx webpack plugins automatically. Plugins need to be applied in the project's webpack.config.js file (e.g. withNx, withReact, etc.).",
237
237
  "default": true,
238
- "x-deprecated": "Automatic configuration of Webpack is deprecated in favor of an explicit 'webpack.config.js' file. This option will be removed in Nx 18. See https://nx.dev/recipes/webpack/webpack-config-setup."
238
+ "x-deprecated": "Automatic configuration of Webpack is deprecated in favor of an explicit 'webpack.config.js' file. This option will be removed in Nx 19. See https://nx.dev/recipes/webpack/webpack-config-setup."
239
239
  },
240
240
  "standardWebpackConfigFunction": {
241
241
  "type": "boolean",
@@ -1,5 +1,5 @@
1
1
  {
2
- "$schema": "http://json-schema.org/schema",
2
+ "$schema": "https://json-schema.org/schema",
3
3
  "$id": "NxWebpackProject",
4
4
  "cli": "nx",
5
5
  "title": "Add Webpack Configuration to a project",
@@ -1,5 +1,5 @@
1
1
  {
2
- "$schema": "http://json-schema.org/schema",
2
+ "$schema": "https://json-schema.org/schema",
3
3
  "$id": "NxWebpackInit",
4
4
  "cli": "nx",
5
5
  "title": "Init Webpack Plugin",
@@ -6,7 +6,7 @@ const fs_1 = require("fs");
6
6
  const devkit_1 = require("@nx/devkit");
7
7
  const nx_1 = require("@nx/devkit/nx");
8
8
  let { readModulePackageJson } = (0, nx_1.requireNx)();
9
- // TODO: Remove this in Nx 18 when Nx 16.7.0 is no longer supported
9
+ // TODO: Remove this in Nx 19 when Nx 16.7.0 is no longer supported
10
10
  readModulePackageJson =
11
11
  readModulePackageJson ??
12
12
  require('nx/src/utils/package-json').readModulePackageJson;
@@ -3,9 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const devkit_1 = require("@nx/devkit");
4
4
  // @ts-ignore
5
5
  const stylusLoader = require("stylus-loader");
6
- // TOOD(v18): Remove this file and stylus support.
6
+ // TOOD(v19): Remove this file and stylus support.
7
7
  function default_1(source) {
8
- devkit_1.logger.warn(`Stylus is support is deprecated and will be removed in Nx 18. We recommend that you migrate to Sass by renaming \`.styl\` files to \`.scss\` and ensuring that the content is valid Sass.`);
8
+ devkit_1.logger.warn(`Stylus is support is deprecated and will be removed in Nx 19. We recommend that you migrate to Sass by renaming \`.styl\` files to \`.scss\` and ensuring that the content is valid Sass.`);
9
9
  return stylusLoader.call(this, source);
10
10
  }
11
11
  exports.default = default_1;