@nx/esbuild 16.6.0 → 16.7.0-beta.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/esbuild",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.7.0-beta.1",
|
|
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": {
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
"migrations": "./migrations.json"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@nrwl/esbuild": "16.
|
|
33
|
-
"@nx/devkit": "16.
|
|
34
|
-
"@nx/js": "16.
|
|
32
|
+
"@nrwl/esbuild": "16.7.0-beta.1",
|
|
33
|
+
"@nx/devkit": "16.7.0-beta.1",
|
|
34
|
+
"@nx/js": "16.7.0-beta.1",
|
|
35
35
|
"chalk": "^4.1.0",
|
|
36
36
|
"dotenv": "~10.0.0",
|
|
37
37
|
"fast-glob": "3.2.7",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"access": "public"
|
|
52
52
|
},
|
|
53
53
|
"types": "./index.d.ts",
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "50a145bb64edcf76985184a9a83d1449dcd4f3d9"
|
|
55
55
|
}
|
|
@@ -50,7 +50,7 @@ function esbuildExecutor(_options, context) {
|
|
|
50
50
|
}
|
|
51
51
|
const cpjOptions = Object.assign(Object.assign({}, options), {
|
|
52
52
|
// TODO(jack): make types generate with esbuild
|
|
53
|
-
skipTypings: true, outputFileExtensionForCjs: (0, build_esbuild_options_1.getOutExtension)('cjs', options), excludeLibsInPackageJson: !options.thirdParty, updateBuildableProjectDepsInPackageJson: externalDependencies.length > 0 });
|
|
53
|
+
skipTypings: true, generateLockfile: true, outputFileExtensionForCjs: (0, build_esbuild_options_1.getOutExtension)('cjs', options), excludeLibsInPackageJson: !options.thirdParty, updateBuildableProjectDepsInPackageJson: externalDependencies.length > 0 });
|
|
54
54
|
// If we're bundling third-party packages, then any extra deps from external should be the only deps in package.json
|
|
55
55
|
if (options.thirdParty && externalDependencies.length > 0) {
|
|
56
56
|
cpjOptions.overrideDependencies = externalDependencies;
|