@nrwl/react-native 14.4.0 → 14.4.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 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.4.0](https://github.com/nrwl/nx/compare/14.3.6...14.4.0) (2022-07-01)
6
+ ## [14.4.3](https://github.com/nrwl/nx/compare/14.4.2...14.4.3) (2022-07-16)
7
7
 
8
8
  **Note:** Version bump only for package @nrwl/react-native
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nrwl/react-native",
3
- "version": "14.4.0",
3
+ "version": "14.4.3",
4
4
  "description": "React Native brings React's declarative UI framework to iOS and Android. With React Native, you use native UI controls and have full access to the native platform.\n\nThe Nx Plugin for React Native contains generators for managing React Native applications and libraries within an Nx workspace. It provides:\n\n\n- Integration with libraries such as Jest, Detox, and Storybook.\n\n- Scaffolding for creating buildable libraries that can be published to npm.\n\n- Utilities for automatic workspace refactoring.",
5
5
  "keywords": [
6
6
  "Monorepo",
@@ -24,13 +24,13 @@
24
24
  "main": "index.js",
25
25
  "types": "index.d.ts",
26
26
  "dependencies": {
27
- "@nrwl/detox": "14.4.0",
28
- "@nrwl/devkit": "14.4.0",
29
- "@nrwl/jest": "14.4.0",
30
- "@nrwl/linter": "14.4.0",
31
- "@nrwl/react": "14.4.0",
32
- "@nrwl/storybook": "14.4.0",
33
- "@nrwl/workspace": "14.4.0",
27
+ "@nrwl/detox": "14.4.3",
28
+ "@nrwl/devkit": "14.4.3",
29
+ "@nrwl/jest": "14.4.3",
30
+ "@nrwl/linter": "14.4.3",
31
+ "@nrwl/react": "14.4.3",
32
+ "@nrwl/storybook": "14.4.3",
33
+ "@nrwl/workspace": "14.4.3",
34
34
  "chalk": "^4.1.0",
35
35
  "enhanced-resolve": "^5.8.3",
36
36
  "fs-extra": "^10.1.0",
@@ -49,5 +49,5 @@
49
49
  },
50
50
  "schematics": "./generators.json",
51
51
  "typings": "./index.d.ts",
52
- "gitHead": "3b1ea739f911b4655e33fdced5708140ebadc59c"
52
+ "gitHead": "9f7df39875d04baa2e8b8f8f12796dea6b38752a"
53
53
  }
@@ -8,7 +8,8 @@
8
8
  "properties": {
9
9
  "project": {
10
10
  "type": "string",
11
- "description": "The project name where to add the components.",
11
+ "aliases": ["name", "projectName"],
12
+ "description": "The project where to add the components.",
12
13
  "examples": ["shared-ui-component"],
13
14
  "$default": {
14
15
  "$source": "projectName",
@@ -2,18 +2,19 @@
2
2
  "$schema": "http://json-schema.org/schema",
3
3
  "cli": "nx",
4
4
  "$id": "NxReactNativeStorybookStories",
5
- "title": "React native Storybook stories",
6
- "description": "React native Storybook stories.",
5
+ "title": "Generate React Native Storybook stories",
6
+ "description": "Generate stories/specs for all components declared in a React Native project.",
7
7
  "type": "object",
8
8
  "properties": {
9
9
  "project": {
10
10
  "type": "string",
11
- "description": "Library or application name.",
11
+ "aliases": ["name", "projectName"],
12
+ "description": "Project for which to generate stories.",
12
13
  "$default": {
13
14
  "$source": "projectName",
14
15
  "index": 0
15
16
  },
16
- "x-prompt": "What's the name of the project for which you want to generate stories?"
17
+ "x-prompt": "For which project do you want to generate stories?"
17
18
  }
18
19
  },
19
20
  "required": ["project"]
@@ -8,11 +8,14 @@
8
8
  "properties": {
9
9
  "name": {
10
10
  "type": "string",
11
- "description": "Project name.",
11
+ "aliases": ["project", "projectName"],
12
+ "description": "Project for which to generate Storybook configuration.",
12
13
  "$default": {
13
14
  "$source": "argv",
14
15
  "index": 0
15
- }
16
+ },
17
+ "x-prompt": "For which project do you want to generate Storybook configuration?",
18
+ "x-dropdown": "projects"
16
19
  },
17
20
  "generateStories": {
18
21
  "type": "boolean",