@nx/react 19.4.0-beta.1 → 19.4.0-beta.2
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/generators.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"init": {
|
|
7
7
|
"factory": "./src/generators/init/init#reactInitGenerator",
|
|
8
8
|
"schema": "./src/generators/init/schema.json",
|
|
9
|
-
"description": "Initialize the `@
|
|
9
|
+
"description": "Initialize the `@nx/react` plugin.",
|
|
10
10
|
"aliases": ["ng-add"],
|
|
11
11
|
"hidden": true
|
|
12
12
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/react",
|
|
3
|
-
"version": "19.4.0-beta.
|
|
3
|
+
"version": "19.4.0-beta.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The React plugin for Nx contains executors and generators for managing React applications and libraries within an Nx workspace. It provides:\n\n\n- Integration with libraries such as Jest, Vitest, Playwright, Cypress, and Storybook.\n\n- Generators for applications, libraries, components, hooks, and more.\n\n- Library build support for publishing packages to npm or other registries.\n\n- Utilities for automatic workspace refactoring.",
|
|
6
6
|
"repository": {
|
|
@@ -38,11 +38,11 @@
|
|
|
38
38
|
"file-loader": "^6.2.0",
|
|
39
39
|
"minimatch": "9.0.3",
|
|
40
40
|
"tslib": "^2.3.0",
|
|
41
|
-
"@nx/devkit": "19.4.0-beta.
|
|
42
|
-
"@nx/js": "19.4.0-beta.
|
|
43
|
-
"@nx/eslint": "19.4.0-beta.
|
|
44
|
-
"@nx/web": "19.4.0-beta.
|
|
45
|
-
"@nrwl/react": "19.4.0-beta.
|
|
41
|
+
"@nx/devkit": "19.4.0-beta.2",
|
|
42
|
+
"@nx/js": "19.4.0-beta.2",
|
|
43
|
+
"@nx/eslint": "19.4.0-beta.2",
|
|
44
|
+
"@nx/web": "19.4.0-beta.2",
|
|
45
|
+
"@nrwl/react": "19.4.0-beta.2"
|
|
46
46
|
},
|
|
47
47
|
"publishConfig": {
|
|
48
48
|
"access": "public"
|
|
@@ -124,11 +124,14 @@ async function buildStaticRemotes(staticRemotesConfig, nxBin, context, options)
|
|
|
124
124
|
}
|
|
125
125
|
});
|
|
126
126
|
staticProcess.stderr.on('data', (data) => devkit_1.logger.info(data.toString()));
|
|
127
|
-
staticProcess.
|
|
127
|
+
staticProcess.once('exit', (code) => {
|
|
128
128
|
stdoutStream.end();
|
|
129
|
+
staticProcess.stdout.removeAllListeners('data');
|
|
130
|
+
staticProcess.stderr.removeAllListeners('data');
|
|
129
131
|
if (code !== 0) {
|
|
130
132
|
throw new Error(`Remote failed to start. A complete log can be found in: ${remoteBuildLogFile}`);
|
|
131
133
|
}
|
|
134
|
+
res();
|
|
132
135
|
});
|
|
133
136
|
process.on('SIGTERM', () => staticProcess.kill('SIGTERM'));
|
|
134
137
|
process.on('exit', () => staticProcess.kill('SIGTERM'));
|