@nrwl/react 14.5.0 → 14.5.3
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/CHANGELOG.md +1 -1
- package/migrations.json +29 -0
- package/package.json +10 -10
- package/src/generators/setup-tailwind/schema.json +5 -1
- package/src/generators/storybook-configuration/schema.json +2 -2
- package/src/utils/versions.d.ts +6 -6
- package/src/utils/versions.js +6 -6
- package/src/utils/versions.js.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
## [14.5.3](https://github.com/nrwl/nx/compare/14.5.2...14.5.3) (2022-08-04)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @nrwl/react
|
package/migrations.json
CHANGED
|
@@ -564,6 +564,35 @@
|
|
|
564
564
|
"alwaysAddToPackageJson": false
|
|
565
565
|
}
|
|
566
566
|
}
|
|
567
|
+
},
|
|
568
|
+
"14.5.3": {
|
|
569
|
+
"version": "14.5.3-beta.0",
|
|
570
|
+
"packages": {
|
|
571
|
+
"@types/node": {
|
|
572
|
+
"version": "18.6.3",
|
|
573
|
+
"alwaysAddToPackageJson": false
|
|
574
|
+
},
|
|
575
|
+
"@emotion/styled": {
|
|
576
|
+
"version": "11.10.0",
|
|
577
|
+
"alwaysAddToPackageJson": false
|
|
578
|
+
},
|
|
579
|
+
"@emotion/react": {
|
|
580
|
+
"version": "11.10.0",
|
|
581
|
+
"alwaysAddToPackageJson": false
|
|
582
|
+
},
|
|
583
|
+
"@emotion/babel-plugin": {
|
|
584
|
+
"version": "11.10.0",
|
|
585
|
+
"alwaysAddToPackageJson": false
|
|
586
|
+
},
|
|
587
|
+
"tailwindcss": {
|
|
588
|
+
"version": "3.1.7",
|
|
589
|
+
"alwaysAddToPackageJson": false
|
|
590
|
+
},
|
|
591
|
+
"autoprefixer": {
|
|
592
|
+
"version": "10.4.8",
|
|
593
|
+
"alwaysAddToPackageJson": false
|
|
594
|
+
}
|
|
595
|
+
}
|
|
567
596
|
}
|
|
568
597
|
}
|
|
569
598
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nrwl/react",
|
|
3
|
-
"version": "14.5.
|
|
3
|
+
"version": "14.5.3",
|
|
4
4
|
"description": "The React plugin 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.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -32,14 +32,14 @@
|
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@babel/core": "^7.15.0",
|
|
34
34
|
"@babel/preset-react": "^7.14.5",
|
|
35
|
-
"@nrwl/cypress": "14.5.
|
|
36
|
-
"@nrwl/devkit": "14.5.
|
|
37
|
-
"@nrwl/jest": "14.5.
|
|
38
|
-
"@nrwl/js": "14.5.
|
|
39
|
-
"@nrwl/linter": "14.5.
|
|
40
|
-
"@nrwl/storybook": "14.5.
|
|
41
|
-
"@nrwl/web": "14.5.
|
|
42
|
-
"@nrwl/workspace": "14.5.
|
|
35
|
+
"@nrwl/cypress": "14.5.3",
|
|
36
|
+
"@nrwl/devkit": "14.5.3",
|
|
37
|
+
"@nrwl/jest": "14.5.3",
|
|
38
|
+
"@nrwl/js": "14.5.3",
|
|
39
|
+
"@nrwl/linter": "14.5.3",
|
|
40
|
+
"@nrwl/storybook": "14.5.3",
|
|
41
|
+
"@nrwl/web": "14.5.3",
|
|
42
|
+
"@nrwl/workspace": "14.5.3",
|
|
43
43
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
|
|
44
44
|
"@svgr/webpack": "^6.1.2",
|
|
45
45
|
"chalk": "4.1.0",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"webpack": "^5.58.1",
|
|
54
54
|
"webpack-merge": "^5.8.0"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "72106d0d81ff66f92d4cbb0459dd70cbe1c7aefa"
|
|
57
57
|
}
|
|
@@ -16,7 +16,11 @@
|
|
|
16
16
|
"type": "string",
|
|
17
17
|
"description": "The name of the project to add the Tailwind CSS setup for.",
|
|
18
18
|
"alias": "p",
|
|
19
|
-
"$default": {
|
|
19
|
+
"$default": {
|
|
20
|
+
"$source": "argv",
|
|
21
|
+
"index": 0
|
|
22
|
+
},
|
|
23
|
+
"x-dropdown": "projects",
|
|
20
24
|
"x-prompt": "What project would you like to add the Tailwind CSS setup?"
|
|
21
25
|
},
|
|
22
26
|
"buildTarget": {
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
},
|
|
32
32
|
"generateCypressSpecs": {
|
|
33
33
|
"type": "boolean",
|
|
34
|
-
"description": "Automatically generate
|
|
35
|
-
"x-prompt": "Automatically generate
|
|
34
|
+
"description": "Automatically generate test files in the Cypress E2E app generated by the `cypress-configure` generator.",
|
|
35
|
+
"x-prompt": "Automatically generate test files in the Cypress E2E app generated by the cypress-configure generator?",
|
|
36
36
|
"default": true
|
|
37
37
|
},
|
|
38
38
|
"cypressDirectory": {
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -5,12 +5,12 @@ export declare const reactIsVersion = "18.2.0";
|
|
|
5
5
|
export declare const typesReactVersion = "18.0.15";
|
|
6
6
|
export declare const typesReactDomVersion = "18.0.6";
|
|
7
7
|
export declare const typesReactIsVersion = "17.0.3";
|
|
8
|
-
export declare const typesNodeVersion = "18.
|
|
8
|
+
export declare const typesNodeVersion = "18.6.3";
|
|
9
9
|
export declare const styledComponentsVersion = "5.3.5";
|
|
10
10
|
export declare const typesStyledComponentsVersion = "5.1.25";
|
|
11
|
-
export declare const emotionStyledVersion = "11.
|
|
12
|
-
export declare const emotionReactVersion = "11.
|
|
13
|
-
export declare const emotionBabelPlugin = "11.
|
|
11
|
+
export declare const emotionStyledVersion = "11.10.0";
|
|
12
|
+
export declare const emotionReactVersion = "11.10.0";
|
|
13
|
+
export declare const emotionBabelPlugin = "11.10.0";
|
|
14
14
|
export declare const styledJsxVersion = "5.0.2";
|
|
15
15
|
export declare const reactRouterDomVersion = "6.3.0";
|
|
16
16
|
export declare const typesReactRouterDomVersion = "5.3.3";
|
|
@@ -25,5 +25,5 @@ export declare const eslintPluginReactHooksVersion = "4.6.0";
|
|
|
25
25
|
export declare const babelPluginStyledComponentsVersion = "1.10.7";
|
|
26
26
|
export declare const tsLibVersion = "^2.3.0";
|
|
27
27
|
export declare const postcssVersion = "8.4.14";
|
|
28
|
-
export declare const tailwindcssVersion = "3.1.
|
|
29
|
-
export declare const autoprefixerVersion = "10.4.
|
|
28
|
+
export declare const tailwindcssVersion = "3.1.7";
|
|
29
|
+
export declare const autoprefixerVersion = "10.4.8";
|
package/src/utils/versions.js
CHANGED
|
@@ -8,12 +8,12 @@ exports.reactIsVersion = '18.2.0';
|
|
|
8
8
|
exports.typesReactVersion = '18.0.15';
|
|
9
9
|
exports.typesReactDomVersion = '18.0.6';
|
|
10
10
|
exports.typesReactIsVersion = '17.0.3';
|
|
11
|
-
exports.typesNodeVersion = '18.
|
|
11
|
+
exports.typesNodeVersion = '18.6.3';
|
|
12
12
|
exports.styledComponentsVersion = '5.3.5';
|
|
13
13
|
exports.typesStyledComponentsVersion = '5.1.25';
|
|
14
|
-
exports.emotionStyledVersion = '11.
|
|
15
|
-
exports.emotionReactVersion = '11.
|
|
16
|
-
exports.emotionBabelPlugin = '11.
|
|
14
|
+
exports.emotionStyledVersion = '11.10.0';
|
|
15
|
+
exports.emotionReactVersion = '11.10.0';
|
|
16
|
+
exports.emotionBabelPlugin = '11.10.0';
|
|
17
17
|
// WARNING: This needs to be in sync with Next.js' dependency or else there might be issues.
|
|
18
18
|
exports.styledJsxVersion = '5.0.2';
|
|
19
19
|
exports.reactRouterDomVersion = '6.3.0';
|
|
@@ -29,6 +29,6 @@ exports.eslintPluginReactHooksVersion = '4.6.0';
|
|
|
29
29
|
exports.babelPluginStyledComponentsVersion = '1.10.7';
|
|
30
30
|
exports.tsLibVersion = '^2.3.0';
|
|
31
31
|
exports.postcssVersion = '8.4.14';
|
|
32
|
-
exports.tailwindcssVersion = '3.1.
|
|
33
|
-
exports.autoprefixerVersion = '10.4.
|
|
32
|
+
exports.tailwindcssVersion = '3.1.7';
|
|
33
|
+
exports.autoprefixerVersion = '10.4.8';
|
|
34
34
|
//# sourceMappingURL=versions.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"versions.js","sourceRoot":"","sources":["../../../../../packages/react/src/utils/versions.ts"],"names":[],"mappings":";;;AAAa,QAAA,SAAS,GAAG,OAAO,CAAC,oBAAoB,CAAC,CAAC,OAAO,CAAC;AAElD,QAAA,YAAY,GAAG,QAAQ,CAAC;AACxB,QAAA,eAAe,GAAG,QAAQ,CAAC;AAC3B,QAAA,cAAc,GAAG,QAAQ,CAAC;AAC1B,QAAA,iBAAiB,GAAG,SAAS,CAAC;AAC9B,QAAA,oBAAoB,GAAG,QAAQ,CAAC;AAChC,QAAA,mBAAmB,GAAG,QAAQ,CAAC;AAE/B,QAAA,gBAAgB,GAAG,QAAQ,CAAC;AAE5B,QAAA,uBAAuB,GAAG,OAAO,CAAC;AAClC,QAAA,4BAA4B,GAAG,QAAQ,CAAC;AAExC,QAAA,oBAAoB,GAAG,
|
|
1
|
+
{"version":3,"file":"versions.js","sourceRoot":"","sources":["../../../../../packages/react/src/utils/versions.ts"],"names":[],"mappings":";;;AAAa,QAAA,SAAS,GAAG,OAAO,CAAC,oBAAoB,CAAC,CAAC,OAAO,CAAC;AAElD,QAAA,YAAY,GAAG,QAAQ,CAAC;AACxB,QAAA,eAAe,GAAG,QAAQ,CAAC;AAC3B,QAAA,cAAc,GAAG,QAAQ,CAAC;AAC1B,QAAA,iBAAiB,GAAG,SAAS,CAAC;AAC9B,QAAA,oBAAoB,GAAG,QAAQ,CAAC;AAChC,QAAA,mBAAmB,GAAG,QAAQ,CAAC;AAE/B,QAAA,gBAAgB,GAAG,QAAQ,CAAC;AAE5B,QAAA,uBAAuB,GAAG,OAAO,CAAC;AAClC,QAAA,4BAA4B,GAAG,QAAQ,CAAC;AAExC,QAAA,oBAAoB,GAAG,SAAS,CAAC;AACjC,QAAA,mBAAmB,GAAG,SAAS,CAAC;AAChC,QAAA,kBAAkB,GAAG,SAAS,CAAC;AAE5C,4FAA4F;AAC/E,QAAA,gBAAgB,GAAG,OAAO,CAAC;AAE3B,QAAA,qBAAqB,GAAG,OAAO,CAAC;AAChC,QAAA,0BAA0B,GAAG,OAAO,CAAC;AAErC,QAAA,0BAA0B,GAAG,QAAQ,CAAC;AAEtC,QAAA,qBAAqB,GAAG,OAAO,CAAC;AAChC,QAAA,iBAAiB,GAAG,OAAO,CAAC;AAC5B,QAAA,wBAAwB,GAAG,QAAQ,CAAC;AAEpC,QAAA,yBAAyB,GAAG,QAAQ,CAAC;AACrC,QAAA,0BAA0B,GAAG,OAAO,CAAC;AACrC,QAAA,wBAAwB,GAAG,QAAQ,CAAC;AACpC,QAAA,6BAA6B,GAAG,OAAO,CAAC;AAExC,QAAA,kCAAkC,GAAG,QAAQ,CAAC;AAE9C,QAAA,YAAY,GAAG,QAAQ,CAAC;AAExB,QAAA,cAAc,GAAG,QAAQ,CAAC;AAC1B,QAAA,kBAAkB,GAAG,OAAO,CAAC;AAC7B,QAAA,mBAAmB,GAAG,QAAQ,CAAC"}
|