@nx/webpack 22.4.0-canary.20251229-0da6921 → 22.4.0-canary.20260101-80cde6a
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 +4 -4
- package/src/executors/webpack/lib/normalize-options.d.ts.map +1 -1
- package/src/executors/webpack/lib/normalize-options.js +1 -1
- package/src/executors/webpack/schema.d.ts +9 -0
- package/src/executors/webpack/schema.json +47 -1
- package/src/plugins/generate-package-json-plugin.d.ts +2 -0
- package/src/plugins/generate-package-json-plugin.d.ts.map +1 -1
- package/src/plugins/generate-package-json-plugin.js +19 -0
- package/src/plugins/nx-webpack-plugin/lib/apply-base-config.js +29 -5
- package/src/plugins/nx-webpack-plugin/nx-app-webpack-plugin-options.d.ts +24 -0
- package/src/plugins/nx-webpack-plugin/nx-app-webpack-plugin-options.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/webpack",
|
|
3
|
-
"version": "22.4.0-canary.
|
|
3
|
+
"version": "22.4.0-canary.20260101-80cde6a",
|
|
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": {
|
|
@@ -64,11 +64,11 @@
|
|
|
64
64
|
"webpack-dev-server": "^5.2.1",
|
|
65
65
|
"webpack-node-externals": "^3.0.0",
|
|
66
66
|
"webpack-subresource-integrity": "^5.1.0",
|
|
67
|
-
"@nx/devkit": "22.4.0-canary.
|
|
68
|
-
"@nx/js": "22.4.0-canary.
|
|
67
|
+
"@nx/devkit": "22.4.0-canary.20260101-80cde6a",
|
|
68
|
+
"@nx/js": "22.4.0-canary.20260101-80cde6a"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"nx": "22.4.0-canary.
|
|
71
|
+
"nx": "22.4.0-canary.20260101-80cde6a"
|
|
72
72
|
},
|
|
73
73
|
"publishConfig": {
|
|
74
74
|
"access": "public"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"normalize-options.d.ts","sourceRoot":"","sources":["../../../../../../../packages/webpack/src/executors/webpack/lib/normalize-options.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EACV,gCAAgC,EAChC,sBAAsB,EACvB,MAAM,WAAW,CAAC;AAGnB,wBAAgB,gBAAgB,CAC9B,OAAO,EAAE,sBAAsB,EAC/B,IAAI,EAAE,MAAM,EACZ,WAAW,EAAE,MAAM,EACnB,UAAU,EAAE,MAAM,GACjB,gCAAgC,
|
|
1
|
+
{"version":3,"file":"normalize-options.d.ts","sourceRoot":"","sources":["../../../../../../../packages/webpack/src/executors/webpack/lib/normalize-options.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EACV,gCAAgC,EAChC,sBAAsB,EACvB,MAAM,WAAW,CAAC;AAGnB,wBAAgB,gBAAgB,CAC9B,OAAO,EAAE,sBAAsB,EAC/B,IAAI,EAAE,MAAM,EACZ,WAAW,EAAE,MAAM,EACnB,UAAU,EAAE,MAAM,GACjB,gCAAgC,CAgClC;AAED,wBAAgB,mBAAmB,CAAC,UAAU,EAAE,IAAI,GAAG,MAAM,EAAE,IAAI,EAAE,MAAM,UAS1E"}
|
|
@@ -15,7 +15,7 @@ function normalizeOptions(options, root, projectRoot, sourceRoot) {
|
|
|
15
15
|
target: options.target ?? 'web',
|
|
16
16
|
outputFileName: options.outputFileName ?? 'main.js',
|
|
17
17
|
webpackConfig: normalizePluginPath(options.webpackConfig, root),
|
|
18
|
-
fileReplacements: (0, normalize_options_1.normalizeFileReplacements)(root, options.fileReplacements),
|
|
18
|
+
fileReplacements: (0, normalize_options_1.normalizeFileReplacements)(root, options.fileReplacements ?? []),
|
|
19
19
|
optimization: typeof options.optimization !== 'object'
|
|
20
20
|
? {
|
|
21
21
|
scripts: options.optimization,
|
|
@@ -36,6 +36,10 @@ export interface OptimizationOptions {
|
|
|
36
36
|
styles: boolean;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
+
export interface TypeCheckOptions {
|
|
40
|
+
async: boolean;
|
|
41
|
+
}
|
|
42
|
+
|
|
39
43
|
export interface WebpackExecutorOptions {
|
|
40
44
|
additionalEntryPoints?: AdditionalEntryPoint[];
|
|
41
45
|
assets?: Array<AssetGlob | string>;
|
|
@@ -46,6 +50,7 @@ export interface WebpackExecutorOptions {
|
|
|
46
50
|
extractLicenses?: boolean;
|
|
47
51
|
fileReplacements?: FileReplacement[];
|
|
48
52
|
generatePackageJson?: boolean;
|
|
53
|
+
runtimeDependencies?: string[];
|
|
49
54
|
standardWebpackConfigFunction?: boolean;
|
|
50
55
|
main?: string;
|
|
51
56
|
memoryLimit?: number;
|
|
@@ -61,11 +66,15 @@ export interface WebpackExecutorOptions {
|
|
|
61
66
|
sourceMap?: boolean | string;
|
|
62
67
|
statsJson?: boolean;
|
|
63
68
|
target?: string;
|
|
69
|
+
/** @deprecated Use `typeCheckOptions` option instead. */
|
|
70
|
+
skipTypeChecking?: boolean;
|
|
71
|
+
typeCheckOptions?: boolean | TypeCheckOptions;
|
|
64
72
|
transformers?: TransformerEntry[];
|
|
65
73
|
tsConfig?: string;
|
|
66
74
|
vendorChunk?: boolean;
|
|
67
75
|
verbose?: boolean;
|
|
68
76
|
watch?: boolean;
|
|
77
|
+
cache?: boolean | { type: 'memory' | 'filesystem'; [key: string]: any };
|
|
69
78
|
webpackConfig?: string;
|
|
70
79
|
babelConfig?: string;
|
|
71
80
|
babelUpwardRootMode?: boolean;
|
|
@@ -45,6 +45,25 @@
|
|
|
45
45
|
"type": "boolean",
|
|
46
46
|
"description": "Enable re-building when files change."
|
|
47
47
|
},
|
|
48
|
+
"cache": {
|
|
49
|
+
"description": "Configure webpack caching behavior. When not specified, defaults to `{ type: 'memory' }` for Node targets in watch mode, and `undefined` otherwise.",
|
|
50
|
+
"oneOf": [
|
|
51
|
+
{
|
|
52
|
+
"type": "boolean"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"type": "object",
|
|
56
|
+
"properties": {
|
|
57
|
+
"type": {
|
|
58
|
+
"type": "string",
|
|
59
|
+
"description": "The type of cache to use.",
|
|
60
|
+
"enum": ["memory", "filesystem"]
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"additionalProperties": true
|
|
64
|
+
}
|
|
65
|
+
]
|
|
66
|
+
},
|
|
48
67
|
"baseHref": {
|
|
49
68
|
"type": "string",
|
|
50
69
|
"description": "Base url for the application being built."
|
|
@@ -68,7 +87,27 @@
|
|
|
68
87
|
"skipTypeChecking": {
|
|
69
88
|
"alias": "typeCheck",
|
|
70
89
|
"type": "boolean",
|
|
71
|
-
"description": "Skip the type checking. Default is `false`."
|
|
90
|
+
"description": "Skip the type checking. Default is `false`.",
|
|
91
|
+
"x-deprecated": "Use `typeCheckOptions` instead. This option will be removed in Nx 24."
|
|
92
|
+
},
|
|
93
|
+
"typeCheckOptions": {
|
|
94
|
+
"description": "Configure type checking during the build. Set to `true` to enable with defaults (async: true). Set to `false` to disable type checking entirely. Use `{ async: true }` to run type checking in a separate process without blocking the build. Default is `{ async: true }`.",
|
|
95
|
+
"oneOf": [
|
|
96
|
+
{
|
|
97
|
+
"type": "boolean"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"type": "object",
|
|
101
|
+
"properties": {
|
|
102
|
+
"async": {
|
|
103
|
+
"type": "boolean",
|
|
104
|
+
"description": "Run type checking in a separate process without blocking the build.",
|
|
105
|
+
"default": true
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
"additionalProperties": false
|
|
109
|
+
}
|
|
110
|
+
]
|
|
72
111
|
},
|
|
73
112
|
"sourceMap": {
|
|
74
113
|
"description": "Output sourcemaps. Use 'hidden' for use with error reporting tools without generating sourcemap comment.",
|
|
@@ -243,6 +282,13 @@
|
|
|
243
282
|
"type": "boolean",
|
|
244
283
|
"description": "Generates a 'stats.json' file which can be analyzed using tools such as: 'webpack-bundle-analyzer' or `<https://webpack.github.io/analyse>`."
|
|
245
284
|
},
|
|
285
|
+
"runtimeDependencies": {
|
|
286
|
+
"description": "Add runtime dependencies to the generated `package.json` file. Useful for Docker install.",
|
|
287
|
+
"type": "array",
|
|
288
|
+
"items": {
|
|
289
|
+
"type": "string"
|
|
290
|
+
}
|
|
291
|
+
},
|
|
246
292
|
"standardWebpackConfigFunction": {
|
|
247
293
|
"type": "boolean",
|
|
248
294
|
"description": "Set to true if the webpack config exports a standard webpack function, not an Nx-specific one. See: https://webpack.js.org/configuration/configuration-types/#exporting-a-function",
|
|
@@ -10,7 +10,9 @@ export declare class GeneratePackageJsonPlugin implements WebpackPluginInstance
|
|
|
10
10
|
projectName: string;
|
|
11
11
|
targetName: string;
|
|
12
12
|
projectGraph: ProjectGraph;
|
|
13
|
+
runtimeDependencies?: string[];
|
|
13
14
|
});
|
|
15
|
+
private resolveRuntimeDependencies;
|
|
14
16
|
apply(compiler: Compiler): void;
|
|
15
17
|
}
|
|
16
18
|
//# sourceMappingURL=generate-package-json-plugin.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generate-package-json-plugin.d.ts","sourceRoot":"","sources":["../../../../../packages/webpack/src/plugins/generate-package-json-plugin.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"generate-package-json-plugin.d.ts","sourceRoot":"","sources":["../../../../../packages/webpack/src/plugins/generate-package-json-plugin.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,QAAQ,EAAW,KAAK,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAS7E,OAAO,EAEL,KAAK,YAAY,EAGlB,MAAM,YAAY,CAAC;AAIpB,qBAAa,yBAA0B,YAAW,qBAAqB;IAEnE,OAAO,CAAC,QAAQ,CAAC,OAAO;gBAAP,OAAO,EAAE;QACxB,kBAAkB,CAAC,EAAE,OAAO,CAAC;QAC7B,QAAQ,EAAE,MAAM,CAAC;QACjB,cAAc,EAAE,MAAM,CAAC;QACvB,IAAI,EAAE,MAAM,CAAC;QACb,WAAW,EAAE,MAAM,CAAC;QACpB,UAAU,EAAE,MAAM,CAAC;QACnB,YAAY,EAAE,YAAY,CAAC;QAC3B,mBAAmB,CAAC,EAAE,MAAM,EAAE,CAAC;KAChC;IAGH,OAAO,CAAC,0BAA0B;IAalC,KAAK,CAAC,QAAQ,EAAE,QAAQ,GAAG,IAAI;CA6EhC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.GeneratePackageJsonPlugin = void 0;
|
|
4
|
+
const fs = require("fs");
|
|
4
5
|
const webpack_1 = require("webpack");
|
|
5
6
|
const js_1 = require("@nx/js");
|
|
6
7
|
const devkit_1 = require("@nx/devkit");
|
|
@@ -9,6 +10,19 @@ class GeneratePackageJsonPlugin {
|
|
|
9
10
|
constructor(options) {
|
|
10
11
|
this.options = options;
|
|
11
12
|
}
|
|
13
|
+
resolveRuntimeDependencies() {
|
|
14
|
+
const runtimeDependencies = {};
|
|
15
|
+
if (this.options.runtimeDependencies) {
|
|
16
|
+
for (const dep of this.options.runtimeDependencies) {
|
|
17
|
+
const depPkgJson = require.resolve(`${dep}/package.json`);
|
|
18
|
+
if (!fs.existsSync(depPkgJson))
|
|
19
|
+
continue;
|
|
20
|
+
const { name, version } = (0, devkit_1.readJsonFile)(depPkgJson);
|
|
21
|
+
runtimeDependencies[name] = version;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
return runtimeDependencies;
|
|
25
|
+
}
|
|
12
26
|
apply(compiler) {
|
|
13
27
|
compiler.hooks.thisCompilation.tap(pluginName, (compilation) => {
|
|
14
28
|
compilation.hooks.processAssets.tap({
|
|
@@ -27,6 +41,7 @@ class GeneratePackageJsonPlugin {
|
|
|
27
41
|
target: js_1.HelperDependency.tsc,
|
|
28
42
|
});
|
|
29
43
|
}
|
|
44
|
+
const runtimeDependencies = this.resolveRuntimeDependencies();
|
|
30
45
|
const packageJson = (0, js_1.createPackageJson)(this.options.projectName, this.options.projectGraph, {
|
|
31
46
|
target: this.options.targetName,
|
|
32
47
|
root: this.options.root,
|
|
@@ -35,6 +50,10 @@ class GeneratePackageJsonPlugin {
|
|
|
35
50
|
skipPackageManager: this.options.skipPackageManager,
|
|
36
51
|
});
|
|
37
52
|
packageJson.main = packageJson.main ?? this.options.outputFileName;
|
|
53
|
+
packageJson.dependencies = {
|
|
54
|
+
...packageJson.dependencies,
|
|
55
|
+
...runtimeDependencies,
|
|
56
|
+
};
|
|
38
57
|
compilation.emitAsset('package.json', new webpack_1.sources.RawSource((0, devkit_1.serializeJson)(packageJson)));
|
|
39
58
|
const packageManager = (0, devkit_1.detectPackageManager)(this.options.root);
|
|
40
59
|
if (packageManager === 'bun') {
|
|
@@ -65,7 +65,11 @@ function applyNxIndependentConfig(options, config) {
|
|
|
65
65
|
// When target is Node, the Webpack mode will be set to 'none' which disables in memory caching and causes a full rebuild on every change.
|
|
66
66
|
// So to mitigate this we enable in memory caching when target is Node and in watch mode.
|
|
67
67
|
config.cache =
|
|
68
|
-
|
|
68
|
+
'cache' in options
|
|
69
|
+
? options.cache
|
|
70
|
+
: options.target === 'node' && options.watch
|
|
71
|
+
? { type: 'memory' }
|
|
72
|
+
: undefined;
|
|
69
73
|
config.devtool =
|
|
70
74
|
options.sourceMap === true ? 'source-map' : options.sourceMap;
|
|
71
75
|
config.output = {
|
|
@@ -209,13 +213,33 @@ function applyNxDependentConfig(options, config, { useNormalizedEntry } = {}) {
|
|
|
209
213
|
if (options.useTsconfigPaths) {
|
|
210
214
|
plugins.push(new nx_tsconfig_paths_webpack_plugin_1.NxTsconfigPathsWebpackPlugin({ ...options, tsConfig }));
|
|
211
215
|
}
|
|
216
|
+
// Normalize typeCheckOptions from deprecated skipTypeChecking for backward compatibility
|
|
217
|
+
const defaultTypeCheckOptions = { async: true };
|
|
218
|
+
let typeCheckOptions;
|
|
219
|
+
if (options.typeCheckOptions !== undefined) {
|
|
220
|
+
if (options.typeCheckOptions === true) {
|
|
221
|
+
typeCheckOptions = defaultTypeCheckOptions;
|
|
222
|
+
}
|
|
223
|
+
else if (options.typeCheckOptions === false) {
|
|
224
|
+
typeCheckOptions = false;
|
|
225
|
+
}
|
|
226
|
+
else {
|
|
227
|
+
typeCheckOptions = options.typeCheckOptions;
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
else if (options.skipTypeChecking) {
|
|
231
|
+
typeCheckOptions = false;
|
|
232
|
+
}
|
|
233
|
+
else {
|
|
234
|
+
typeCheckOptions = defaultTypeCheckOptions;
|
|
235
|
+
}
|
|
212
236
|
// New TS Solution already has a typecheck target but allow it to run during serve
|
|
213
|
-
|
|
214
|
-
(isUsingTsSolution
|
|
215
|
-
|
|
216
|
-
process.env['WEBPACK_SERVE'])) {
|
|
237
|
+
const shouldTypeCheck = typeCheckOptions !== false &&
|
|
238
|
+
(!isUsingTsSolution || process.env['WEBPACK_SERVE']);
|
|
239
|
+
if (shouldTypeCheck) {
|
|
217
240
|
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
|
|
218
241
|
plugins.push(new ForkTsCheckerWebpackPlugin({
|
|
242
|
+
...typeCheckOptions,
|
|
219
243
|
typescript: {
|
|
220
244
|
configFile: path.isAbsolute(tsConfig)
|
|
221
245
|
? tsConfig
|
|
@@ -29,6 +29,9 @@ export interface OptimizationOptions {
|
|
|
29
29
|
scripts: boolean;
|
|
30
30
|
styles: boolean;
|
|
31
31
|
}
|
|
32
|
+
export interface TypeCheckOptions {
|
|
33
|
+
async: boolean;
|
|
34
|
+
}
|
|
32
35
|
export interface NxAppWebpackPluginOptions {
|
|
33
36
|
/**
|
|
34
37
|
* The tsconfig file for the project. e.g. `tsconfig.json`
|
|
@@ -107,6 +110,10 @@ export interface NxAppWebpackPluginOptions {
|
|
|
107
110
|
* Generate a `package.json` file for the bundle. Useful for Node applications.
|
|
108
111
|
*/
|
|
109
112
|
generatePackageJson?: boolean;
|
|
113
|
+
/**
|
|
114
|
+
* Add runtime dependencies to the generated `package.json` file. Useful for Docker install.
|
|
115
|
+
*/
|
|
116
|
+
runtimeDependencies?: string[];
|
|
110
117
|
/**
|
|
111
118
|
* Path to the `index.html`.
|
|
112
119
|
*/
|
|
@@ -169,8 +176,18 @@ export interface NxAppWebpackPluginOptions {
|
|
|
169
176
|
skipPackageManager?: boolean;
|
|
170
177
|
/**
|
|
171
178
|
* Skip type checking. Default is `false`.
|
|
179
|
+
* @deprecated Use `typeCheckOptions` option instead. This option will be removed in Nx 24.
|
|
172
180
|
*/
|
|
173
181
|
skipTypeChecking?: boolean;
|
|
182
|
+
/**
|
|
183
|
+
* Configure type checking during the build.
|
|
184
|
+
* - Set to `true` to enable type checking with default options (async: true).
|
|
185
|
+
* - Set to `false` to disable type checking entirely.
|
|
186
|
+
* - Use `{ async: true }` to run type checking in a separate process without blocking the build.
|
|
187
|
+
* - Use `{ async: false }` to run type checking synchronously.
|
|
188
|
+
* Default is `{ async: true }`.
|
|
189
|
+
*/
|
|
190
|
+
typeCheckOptions?: boolean | TypeCheckOptions;
|
|
174
191
|
/**
|
|
175
192
|
* Generate source maps.
|
|
176
193
|
*/
|
|
@@ -223,6 +240,13 @@ export interface NxAppWebpackPluginOptions {
|
|
|
223
240
|
* Watch for file changes.
|
|
224
241
|
*/
|
|
225
242
|
watch?: boolean;
|
|
243
|
+
/**
|
|
244
|
+
* Configure webpack caching behavior. When not specified, defaults to `{ type: 'memory' }` for Node targets in watch mode, and `undefined` otherwise.
|
|
245
|
+
*/
|
|
246
|
+
cache?: boolean | {
|
|
247
|
+
type: 'memory' | 'filesystem';
|
|
248
|
+
[key: string]: any;
|
|
249
|
+
};
|
|
226
250
|
/**
|
|
227
251
|
* Set a public path for assets resources with absolute paths.
|
|
228
252
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nx-app-webpack-plugin-options.d.ts","sourceRoot":"","sources":["../../../../../../packages/webpack/src/plugins/nx-webpack-plugin/nx-app-webpack-plugin-options.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"nx-app-webpack-plugin-options.d.ts","sourceRoot":"","sources":["../../../../../../packages/webpack/src/plugins/nx-webpack-plugin/nx-app-webpack-plugin-options.ts"],"names":[],"mappings":"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"}
|