@nx/esbuild 22.3.0-canary.20251215-e864b6a → 22.3.0-canary.20251217-6323dba

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/esbuild",
3
- "version": "22.3.0-canary.20251215-e864b6a",
3
+ "version": "22.3.0-canary.20251217-6323dba",
4
4
  "private": false,
5
5
  "description": "The Nx Plugin for esbuild contains executors and generators that support building applications using esbuild",
6
6
  "repository": {
@@ -31,15 +31,15 @@
31
31
  "migrations": "./migrations.json"
32
32
  },
33
33
  "dependencies": {
34
- "@nx/devkit": "22.3.0-canary.20251215-e864b6a",
35
- "@nx/js": "22.3.0-canary.20251215-e864b6a",
34
+ "@nx/devkit": "22.3.0-canary.20251217-6323dba",
35
+ "@nx/js": "22.3.0-canary.20251217-6323dba",
36
36
  "tinyglobby": "^0.2.12",
37
37
  "picocolors": "^1.1.0",
38
38
  "tsconfig-paths": "^4.1.2",
39
39
  "tslib": "^2.3.0"
40
40
  },
41
41
  "devDependencies": {
42
- "nx": "22.3.0-canary.20251215-e864b6a"
42
+ "nx": "22.3.0-canary.20251217-6323dba"
43
43
  },
44
44
  "peerDependencies": {
45
45
  "esbuild": ">=0.19.2 <1.0.0"
@@ -15,7 +15,7 @@ function normalizeOptions(options, context) {
15
15
  const tsConfig = (0, js_1.readTsConfig)(options.tsConfig);
16
16
  // If we're not generating package.json file, then copy it as-is as an asset when not using ts solution setup.
17
17
  const assets = options.generatePackageJson || isTsSolutionSetup
18
- ? options.assets ?? []
18
+ ? (options.assets ?? [])
19
19
  : [
20
20
  ...options.assets,
21
21
  (0, devkit_1.joinPathFragments)(context.projectGraph.nodes[context.projectName].data.root, 'package.json'),