@nrwl/react 14.5.1 → 14.5.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/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
- ## [14.5.1](https://github.com/nrwl/nx/compare/14.5.0...14.5.1) (2022-07-28)
6
+ ## [14.5.2](https://github.com/nrwl/nx/compare/14.5.1...14.5.2) (2022-08-02)
7
7
 
8
8
  **Note:** Version bump only for package @nrwl/react
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nrwl/react",
3
- "version": "14.5.1",
3
+ "version": "14.5.2",
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.1",
36
- "@nrwl/devkit": "14.5.1",
37
- "@nrwl/jest": "14.5.1",
38
- "@nrwl/js": "14.5.1",
39
- "@nrwl/linter": "14.5.1",
40
- "@nrwl/storybook": "14.5.1",
41
- "@nrwl/web": "14.5.1",
42
- "@nrwl/workspace": "14.5.1",
35
+ "@nrwl/cypress": "14.5.2",
36
+ "@nrwl/devkit": "14.5.2",
37
+ "@nrwl/jest": "14.5.2",
38
+ "@nrwl/js": "14.5.2",
39
+ "@nrwl/linter": "14.5.2",
40
+ "@nrwl/storybook": "14.5.2",
41
+ "@nrwl/web": "14.5.2",
42
+ "@nrwl/workspace": "14.5.2",
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": "7f259493ac1f0bdb2ba7423d45ac9ec51c3f315c"
56
+ "gitHead": "8bb72a98c57d1979fee287c36878584716d8a9c7"
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": { "$source": "projectName" },
19
+ "$default": {
20
+ "$source": "argv",
21
+ "index": 0
22
+ },
23
+ "x-dropdown": "project",
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 `*.spec.ts` files in the Cypress E2E app generated by the `cypress-configure` generator.",
35
- "x-prompt": "Automatically generate *.spec.ts files in the Cypress E2E app generated by the cypress-configure generator?",
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": {