@nx/react 16.10.0-beta.0 → 16.10.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/migrations.json +17 -0
- package/package.json +6 -6
- package/src/utils/versions.d.ts +3 -3
- package/src/utils/versions.js +3 -3
package/migrations.json
CHANGED
|
@@ -971,6 +971,23 @@
|
|
|
971
971
|
"alwaysAddToPackageJson": false
|
|
972
972
|
}
|
|
973
973
|
}
|
|
974
|
+
},
|
|
975
|
+
"17.0.0-beta.0": {
|
|
976
|
+
"version": "17.0.0-beta.0",
|
|
977
|
+
"packages": {
|
|
978
|
+
"@types/react": {
|
|
979
|
+
"version": "18.2.24",
|
|
980
|
+
"alwaysAddToPackageJson": false
|
|
981
|
+
},
|
|
982
|
+
"@types/react-dom": {
|
|
983
|
+
"version": "18.2.9",
|
|
984
|
+
"alwaysAddToPackageJson": false
|
|
985
|
+
},
|
|
986
|
+
"@types/react-is": {
|
|
987
|
+
"version": "18.2.2",
|
|
988
|
+
"alwaysAddToPackageJson": false
|
|
989
|
+
}
|
|
990
|
+
}
|
|
974
991
|
}
|
|
975
992
|
}
|
|
976
993
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/react",
|
|
3
|
-
"version": "16.10.0-beta.
|
|
3
|
+
"version": "16.10.0-beta.1",
|
|
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, 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": {
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"file-loader": "^6.2.0",
|
|
38
38
|
"minimatch": "3.0.5",
|
|
39
39
|
"tslib": "^2.3.0",
|
|
40
|
-
"@nx/devkit": "16.10.0-beta.
|
|
41
|
-
"@nx/js": "16.10.0-beta.
|
|
42
|
-
"@nx/linter": "16.10.0-beta.
|
|
43
|
-
"@nx/web": "16.10.0-beta.
|
|
44
|
-
"@nrwl/react": "16.10.0-beta.
|
|
40
|
+
"@nx/devkit": "16.10.0-beta.1",
|
|
41
|
+
"@nx/js": "16.10.0-beta.1",
|
|
42
|
+
"@nx/linter": "16.10.0-beta.1",
|
|
43
|
+
"@nx/web": "16.10.0-beta.1",
|
|
44
|
+
"@nrwl/react": "16.10.0-beta.1"
|
|
45
45
|
},
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"access": "public"
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -5,9 +5,9 @@ export declare const reactDomVersion = "18.2.0";
|
|
|
5
5
|
export declare const reactIsVersion = "18.2.0";
|
|
6
6
|
export declare const swcLoaderVersion = "0.1.15";
|
|
7
7
|
export declare const babelLoaderVersion = "^9.1.2";
|
|
8
|
-
export declare const typesReactVersion = "18.2.
|
|
9
|
-
export declare const typesReactDomVersion = "18.2.
|
|
10
|
-
export declare const typesReactIsVersion = "18.2.
|
|
8
|
+
export declare const typesReactVersion = "18.2.24";
|
|
9
|
+
export declare const typesReactDomVersion = "18.2.9";
|
|
10
|
+
export declare const typesReactIsVersion = "18.2.2";
|
|
11
11
|
export declare const typesNodeVersion = "18.14.2";
|
|
12
12
|
export declare const babelPresetReactVersion = "^7.14.5";
|
|
13
13
|
export declare const babelCoreVersion = "^7.14.5";
|
package/src/utils/versions.js
CHANGED
|
@@ -9,9 +9,9 @@ exports.reactDomVersion = '18.2.0';
|
|
|
9
9
|
exports.reactIsVersion = '18.2.0';
|
|
10
10
|
exports.swcLoaderVersion = '0.1.15';
|
|
11
11
|
exports.babelLoaderVersion = '^9.1.2';
|
|
12
|
-
exports.typesReactVersion = '18.2.
|
|
13
|
-
exports.typesReactDomVersion = '18.2.
|
|
14
|
-
exports.typesReactIsVersion = '18.2.
|
|
12
|
+
exports.typesReactVersion = '18.2.24';
|
|
13
|
+
exports.typesReactDomVersion = '18.2.9';
|
|
14
|
+
exports.typesReactIsVersion = '18.2.2';
|
|
15
15
|
exports.typesNodeVersion = '18.14.2';
|
|
16
16
|
exports.babelPresetReactVersion = '^7.14.5';
|
|
17
17
|
exports.babelCoreVersion = '^7.14.5';
|