@nx/react 17.1.0-rc.0 → 17.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/react",
3
- "version": "17.1.0-rc.0",
3
+ "version": "17.1.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": "17.1.0-rc.0",
41
- "@nx/js": "17.1.0-rc.0",
42
- "@nx/eslint": "17.1.0-rc.0",
43
- "@nx/web": "17.1.0-rc.0",
44
- "@nrwl/react": "17.1.0-rc.0"
40
+ "@nx/devkit": "17.1.1",
41
+ "@nx/js": "17.1.1",
42
+ "@nx/eslint": "17.1.1",
43
+ "@nx/web": "17.1.1",
44
+ "@nrwl/react": "17.1.1"
45
45
  },
46
46
  "publishConfig": {
47
47
  "access": "public"
@@ -792,7 +792,7 @@ export function NxWelcome({ title }: { title: string }) {
792
792
  <span># Generate UI lib</span>
793
793
  nx g @nx/react:lib ui
794
794
  <span># Add a component</span>
795
- nx g @nx/react:component button --project ui
795
+ nx g @nx/react:component ui/src/lib/button
796
796
  </pre>
797
797
  </details>
798
798
  <details>