@nrwl/react 14.2.4 → 14.3.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/.eslintrc.json CHANGED
@@ -18,6 +18,18 @@
18
18
  "@angular-devkit/architect"
19
19
  ]
20
20
  }
21
+ },
22
+ {
23
+ "files": [
24
+ "./package.json",
25
+ "./generators.json",
26
+ "./executors.json",
27
+ "./migrations.json"
28
+ ],
29
+ "parser": "jsonc-eslint-parser",
30
+ "rules": {
31
+ "@nrwl/nx/nx-plugin-checks": "error"
32
+ }
21
33
  }
22
34
  ],
23
35
  "ignorePatterns": ["!**/*"]
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.2.4](https://github.com/nrwl/nx/compare/14.2.2...14.2.4) (2022-06-09)
6
+ # [14.3.0-beta.2](https://github.com/nrwl/nx/compare/14.2.2...14.3.0-beta.2) (2022-06-11)
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.2.4",
3
+ "version": "14.3.0-beta.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,21 +32,21 @@
32
32
  "dependencies": {
33
33
  "@babel/core": "^7.15.0",
34
34
  "@babel/preset-react": "^7.14.5",
35
- "@nrwl/cypress": "14.2.4",
36
- "@nrwl/devkit": "14.2.4",
37
- "@nrwl/jest": "14.2.4",
38
- "@nrwl/js": "14.2.4",
39
- "@nrwl/linter": "14.2.4",
40
- "@nrwl/storybook": "14.2.4",
41
- "@nrwl/web": "14.2.4",
42
- "@nrwl/workspace": "14.2.4",
35
+ "@nrwl/cypress": "14.3.0-beta.2",
36
+ "@nrwl/devkit": "14.3.0-beta.2",
37
+ "@nrwl/jest": "14.3.0-beta.2",
38
+ "@nrwl/js": "14.3.0-beta.2",
39
+ "@nrwl/linter": "14.3.0-beta.2",
40
+ "@nrwl/storybook": "14.3.0-beta.2",
41
+ "@nrwl/web": "14.3.0-beta.2",
42
+ "@nrwl/workspace": "14.3.0-beta.2",
43
43
  "@pmmmwh/react-refresh-webpack-plugin": "^0.5.1",
44
44
  "@storybook/node-logger": "6.1.20",
45
45
  "@svgr/webpack": "^6.1.2",
46
46
  "chalk": "4.1.0",
47
47
  "eslint-plugin-import": "^2.25.2",
48
48
  "eslint-plugin-jsx-a11y": "^6.5.1",
49
- "eslint-plugin-react": "7.28.0",
49
+ "eslint-plugin-react": "7.30.0",
50
50
  "eslint-plugin-react-hooks": "^4.3.0",
51
51
  "react-refresh": "^0.10.0",
52
52
  "semver": "7.3.4",
@@ -54,5 +54,5 @@
54
54
  "webpack": "^5.58.1",
55
55
  "webpack-merge": "^5.8.0"
56
56
  },
57
- "gitHead": "3e3ab094cf1a7cc7c126919622cc7dac011ddd97"
57
+ "gitHead": "0fd3281d3c7dc7c086adfe754ce1be85b0f890bb"
58
58
  }
@@ -743,9 +743,9 @@ export function NxWelcome({ title }: { title: string }) {
743
743
  </summary>
744
744
  <pre>
745
745
  <span># Generate UI lib</span>
746
- nx g @nrwl/angular:lib ui
746
+ nx g @nrwl/react:lib ui
747
747
  <span># Add a component</span>
748
- nx g @nrwl/angular:component button --project ui
748
+ nx g @nrwl/react:component button --project ui
749
749
  </pre>
750
750
  </details>
751
751
  <details>
@@ -10,5 +10,4 @@ export interface StorybookConfigureSchema {
10
10
  linter?: Linter;
11
11
  cypressDirectory?: string;
12
12
  standaloneConfig?: boolean;
13
- projectBuildConfig?: string;
14
13
  }
@@ -52,10 +52,6 @@
52
52
  "enum": ["eslint", "tslint"],
53
53
  "default": "eslint"
54
54
  },
55
- "projectBuildConfig": {
56
- "description": "Provide a custom projectBuildConfig for the Angular executor. If left blank, Nx will use the default.",
57
- "type": "string"
58
- },
59
55
  "standaloneConfig": {
60
56
  "description": "Split the project configuration into `<projectRoot>/project.json` rather than including it inside `workspace.json`.",
61
57
  "type": "boolean"