@nx/esbuild 19.1.0 → 19.1.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/README.md
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
|
|
25
25
|
Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI.
|
|
26
26
|
|
|
27
|
-
This package is a [EsBuild plugin for Nx](https://nx.dev/
|
|
27
|
+
This package is a [EsBuild plugin for Nx](https://nx.dev/nx-api/esbuild).
|
|
28
28
|
|
|
29
29
|
## Getting Started
|
|
30
30
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/esbuild",
|
|
3
|
-
"version": "19.1.
|
|
3
|
+
"version": "19.1.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": {
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
"fs-extra": "^11.1.0",
|
|
37
37
|
"tslib": "^2.3.0",
|
|
38
38
|
"tsconfig-paths": "^4.1.2",
|
|
39
|
-
"@nx/devkit": "19.1.
|
|
40
|
-
"@nx/js": "19.1.
|
|
41
|
-
"@nrwl/esbuild": "19.1.
|
|
39
|
+
"@nx/devkit": "19.1.1",
|
|
40
|
+
"@nx/js": "19.1.1",
|
|
41
|
+
"@nrwl/esbuild": "19.1.1"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"esbuild": "~0.19.2"
|
|
@@ -41,7 +41,7 @@ async function* esbuildExecutor(_options, context) {
|
|
|
41
41
|
if (options.generatePackageJson) {
|
|
42
42
|
if (context.projectGraph.nodes[context.projectName].type !== 'app') {
|
|
43
43
|
devkit_1.logger.warn((0, devkit_1.stripIndents) `The project ${context.projectName} is using the 'generatePackageJson' option which is deprecated for library projects. It should only be used for applications.
|
|
44
|
-
For libraries, configure the project to use the '@nx/dependency-checks' ESLint rule instead (https://nx.dev/
|
|
44
|
+
For libraries, configure the project to use the '@nx/dependency-checks' ESLint rule instead (https://nx.dev/nx-api/eslint-plugin/documents/dependency-checks).`);
|
|
45
45
|
}
|
|
46
46
|
const cpjOptions = {
|
|
47
47
|
...options,
|