@nx/react-native 22.7.0-beta.7 → 22.7.0-beta.9
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/executors.json +56 -56
- package/generators.json +40 -40
- package/migrations.json +158 -158
- package/package.json +8 -8
- package/project.json +10 -10
- package/src/executors/build-android/schema.json +78 -78
- package/src/executors/build-ios/schema.json +88 -88
- package/src/executors/bundle/schema.json +89 -89
- package/src/executors/ensure-symlink/schema.json +9 -9
- package/src/executors/pod-install/schema.json +30 -30
- package/src/executors/run-android/schema.json +98 -98
- package/src/executors/run-ios/schema.json +94 -94
- package/src/executors/start/schema.json +26 -26
- package/src/executors/storybook/schema.json +26 -26
- package/src/executors/sync-deps/schema.json +30 -30
- package/src/executors/upgrade/schema.json +9 -9
- package/src/generators/application/files/app/ios/__className__/Images.xcassets/AppIcon.appiconset/Contents.json +50 -50
- package/src/generators/application/files/app/ios/__className__/Images.xcassets/Contents.json +4 -4
- package/src/generators/application/schema.json +102 -102
- package/src/generators/component/schema.json +68 -68
- package/src/generators/convert-to-inferred/schema.json +16 -16
- package/src/generators/init/schema.json +32 -32
- package/src/generators/library/schema.json +101 -101
- package/src/generators/web-configuration/schema.json +39 -39
|
@@ -1,101 +1,101 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
2
|
+
"version": 2,
|
|
3
|
+
"continuous": true,
|
|
4
|
+
"outputCapture": "direct-nodejs",
|
|
5
|
+
"cli": "nx",
|
|
6
|
+
"$id": "NxReactNativeRunAndroid",
|
|
7
|
+
"$schema": "https://json-schema.org/schema",
|
|
8
|
+
"title": "Run Android application",
|
|
9
|
+
"description": "Run Android target options.",
|
|
10
|
+
"type": "object",
|
|
11
|
+
"presets": [
|
|
12
|
+
{
|
|
13
|
+
"name": "Run Android for the current device architecture",
|
|
14
|
+
"keys": ["activeArchOnly"]
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"name": "Lists all available Android devices and simulators",
|
|
18
|
+
"keys": ["listDevices"]
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"name": "Run Android without metro cache",
|
|
22
|
+
"keys": ["resetCache"]
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"properties": {
|
|
26
|
+
"appId": {
|
|
27
|
+
"type": "string",
|
|
28
|
+
"description": "Specify an `applicationId` to launch after build. If not specified, `package` from `AndroidManifest.xml` will be used."
|
|
29
|
+
},
|
|
30
|
+
"appIdSuffix": {
|
|
31
|
+
"type": "string",
|
|
32
|
+
"description": "Specify an `applicationIdSuffix` to launch after build."
|
|
33
|
+
},
|
|
34
|
+
"mainActivity": {
|
|
35
|
+
"type": "string",
|
|
36
|
+
"description": "Name of the activity to start.",
|
|
37
|
+
"default": "MainActivity"
|
|
38
|
+
},
|
|
39
|
+
"deviceId": {
|
|
40
|
+
"type": "string",
|
|
41
|
+
"description": "Builds your app and starts it on a specific device/simulator with the given device id (listed by running `adb devices` on the command line)."
|
|
42
|
+
},
|
|
43
|
+
"listDevices": {
|
|
44
|
+
"type": "boolean",
|
|
45
|
+
"description": "Lists all available Android devices and simulators and let you choose one to run the app"
|
|
46
|
+
},
|
|
47
|
+
"binaryPath": {
|
|
48
|
+
"type": "string",
|
|
49
|
+
"description": "Path relative to project root where pre-built .apk binary lives."
|
|
50
|
+
},
|
|
51
|
+
"mode": {
|
|
52
|
+
"type": "string",
|
|
53
|
+
"description": "Specify your app's build variant",
|
|
54
|
+
"default": "debug",
|
|
55
|
+
"examples": ["debug", "release"],
|
|
56
|
+
"x-priority": "important"
|
|
57
|
+
},
|
|
58
|
+
"port": {
|
|
59
|
+
"type": "number",
|
|
60
|
+
"description": "The port where the packager server is listening on.",
|
|
61
|
+
"default": 8081
|
|
62
|
+
},
|
|
63
|
+
"tasks": {
|
|
64
|
+
"oneOf": [
|
|
65
|
+
{ "type": "array", "items": { "type": "string" } },
|
|
66
|
+
{ "type": "string" }
|
|
67
|
+
],
|
|
68
|
+
"description": "Run custom Gradle tasks. By default it's \"assembleDebug\". Will override passed mode and variant arguments.",
|
|
69
|
+
"examples": [
|
|
70
|
+
"assembleDebug",
|
|
71
|
+
"assembleRelease",
|
|
72
|
+
"bundleDebug",
|
|
73
|
+
"bundleRelease",
|
|
74
|
+
"installDebug",
|
|
75
|
+
"installRelease"
|
|
76
|
+
]
|
|
77
|
+
},
|
|
78
|
+
"activeArchOnly": {
|
|
79
|
+
"type": "boolean",
|
|
80
|
+
"description": "Build native libraries only for the current device architecture for debug builds.",
|
|
81
|
+
"default": false
|
|
82
|
+
},
|
|
83
|
+
"extraParams": {
|
|
84
|
+
"oneOf": [
|
|
85
|
+
{ "type": "array", "items": { "type": "string" } },
|
|
86
|
+
{ "type": "string" }
|
|
87
|
+
],
|
|
88
|
+
"description": "Custom params passed to gradle build command"
|
|
89
|
+
},
|
|
90
|
+
"interactive": {
|
|
91
|
+
"type": "boolean",
|
|
92
|
+
"description": "Explicitly select build type and flavour to use before running a build"
|
|
93
|
+
},
|
|
94
|
+
"resetCache": {
|
|
95
|
+
"type": "boolean",
|
|
96
|
+
"description": "Resets metro cache.",
|
|
97
|
+
"default": false
|
|
98
|
+
}
|
|
15
99
|
},
|
|
16
|
-
|
|
17
|
-
"name": "Lists all available Android devices and simulators",
|
|
18
|
-
"keys": ["listDevices"]
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"name": "Run Android without metro cache",
|
|
22
|
-
"keys": ["resetCache"]
|
|
23
|
-
}
|
|
24
|
-
],
|
|
25
|
-
"properties": {
|
|
26
|
-
"appId": {
|
|
27
|
-
"type": "string",
|
|
28
|
-
"description": "Specify an `applicationId` to launch after build. If not specified, `package` from `AndroidManifest.xml` will be used."
|
|
29
|
-
},
|
|
30
|
-
"appIdSuffix": {
|
|
31
|
-
"type": "string",
|
|
32
|
-
"description": "Specify an `applicationIdSuffix` to launch after build."
|
|
33
|
-
},
|
|
34
|
-
"mainActivity": {
|
|
35
|
-
"type": "string",
|
|
36
|
-
"description": "Name of the activity to start.",
|
|
37
|
-
"default": "MainActivity"
|
|
38
|
-
},
|
|
39
|
-
"deviceId": {
|
|
40
|
-
"type": "string",
|
|
41
|
-
"description": "Builds your app and starts it on a specific device/simulator with the given device id (listed by running `adb devices` on the command line)."
|
|
42
|
-
},
|
|
43
|
-
"listDevices": {
|
|
44
|
-
"type": "boolean",
|
|
45
|
-
"description": "Lists all available Android devices and simulators and let you choose one to run the app"
|
|
46
|
-
},
|
|
47
|
-
"binaryPath": {
|
|
48
|
-
"type": "string",
|
|
49
|
-
"description": "Path relative to project root where pre-built .apk binary lives."
|
|
50
|
-
},
|
|
51
|
-
"mode": {
|
|
52
|
-
"type": "string",
|
|
53
|
-
"description": "Specify your app's build variant",
|
|
54
|
-
"default": "debug",
|
|
55
|
-
"examples": ["debug", "release"],
|
|
56
|
-
"x-priority": "important"
|
|
57
|
-
},
|
|
58
|
-
"port": {
|
|
59
|
-
"type": "number",
|
|
60
|
-
"description": "The port where the packager server is listening on.",
|
|
61
|
-
"default": 8081
|
|
62
|
-
},
|
|
63
|
-
"tasks": {
|
|
64
|
-
"oneOf": [
|
|
65
|
-
{ "type": "array", "items": { "type": "string" } },
|
|
66
|
-
{ "type": "string" }
|
|
67
|
-
],
|
|
68
|
-
"description": "Run custom Gradle tasks. By default it's \"assembleDebug\". Will override passed mode and variant arguments.",
|
|
69
|
-
"examples": [
|
|
70
|
-
"assembleDebug",
|
|
71
|
-
"assembleRelease",
|
|
72
|
-
"bundleDebug",
|
|
73
|
-
"bundleRelease",
|
|
74
|
-
"installDebug",
|
|
75
|
-
"installRelease"
|
|
76
|
-
]
|
|
77
|
-
},
|
|
78
|
-
"activeArchOnly": {
|
|
79
|
-
"type": "boolean",
|
|
80
|
-
"description": "Build native libraries only for the current device architecture for debug builds.",
|
|
81
|
-
"default": false
|
|
82
|
-
},
|
|
83
|
-
"extraParams": {
|
|
84
|
-
"oneOf": [
|
|
85
|
-
{ "type": "array", "items": { "type": "string" } },
|
|
86
|
-
{ "type": "string" }
|
|
87
|
-
],
|
|
88
|
-
"description": "Custom params passed to gradle build command"
|
|
89
|
-
},
|
|
90
|
-
"interactive": {
|
|
91
|
-
"type": "boolean",
|
|
92
|
-
"description": "Explicitly select build type and flavour to use before running a build"
|
|
93
|
-
},
|
|
94
|
-
"resetCache": {
|
|
95
|
-
"type": "boolean",
|
|
96
|
-
"description": "Resets metro cache.",
|
|
97
|
-
"default": false
|
|
98
|
-
}
|
|
99
|
-
},
|
|
100
|
-
"examplesFile": "../../../docs/run-android-examples.md"
|
|
100
|
+
"examplesFile": "../../../docs/run-android-examples.md"
|
|
101
101
|
}
|
|
@@ -1,97 +1,97 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
2
|
+
"version": 2,
|
|
3
|
+
"continuous": true,
|
|
4
|
+
"outputCapture": "direct-nodejs",
|
|
5
|
+
"cli": "nx",
|
|
6
|
+
"$id": "NxReactNativeRunIos",
|
|
7
|
+
"$schema": "https://json-schema.org/schema",
|
|
8
|
+
"title": "Run iOS application",
|
|
9
|
+
"description": "Run iOS target options.",
|
|
10
|
+
"type": "object",
|
|
11
|
+
"presets": [
|
|
12
|
+
{
|
|
13
|
+
"name": "Run iOS on a simulator",
|
|
14
|
+
"keys": ["simulator"]
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"name": "Run iOS on a device",
|
|
18
|
+
"keys": ["device"]
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"name": "Run iOS on a device with udid",
|
|
22
|
+
"keys": ["udid"]
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"properties": {
|
|
26
|
+
"simulator": {
|
|
27
|
+
"type": "string",
|
|
28
|
+
"description": "Explicitly set simulator to use. Optionally include iOS version between parenthesis at the end to match an exact version: \"iPhone 6 (10.0)\"",
|
|
29
|
+
"examples": [
|
|
30
|
+
"iPhone 14",
|
|
31
|
+
"iPhone 13",
|
|
32
|
+
"iPhone 12",
|
|
33
|
+
"iPhone 11",
|
|
34
|
+
"iPhone X"
|
|
35
|
+
],
|
|
36
|
+
"x-priority": "important"
|
|
37
|
+
},
|
|
38
|
+
"mode": {
|
|
39
|
+
"type": "string",
|
|
40
|
+
"description": "Explicitly set the scheme configuration to use",
|
|
41
|
+
"default": "Debug",
|
|
42
|
+
"examples": ["Debug", "Release"],
|
|
43
|
+
"x-priority": "important"
|
|
44
|
+
},
|
|
45
|
+
"scheme": {
|
|
46
|
+
"type": "string",
|
|
47
|
+
"description": "Explicitly set Xcode scheme to use"
|
|
48
|
+
},
|
|
49
|
+
"device": {
|
|
50
|
+
"type": "string",
|
|
51
|
+
"description": "Explicitly set device to use by name. The value is not required if you have a single device connected."
|
|
52
|
+
},
|
|
53
|
+
"udid": {
|
|
54
|
+
"type": "string",
|
|
55
|
+
"description": "Explicitly set device to use by udid"
|
|
56
|
+
},
|
|
57
|
+
"verbose": {
|
|
58
|
+
"type": "boolean",
|
|
59
|
+
"description": "Do not use xcbeautify or xcpretty even if installed"
|
|
60
|
+
},
|
|
61
|
+
"port": {
|
|
62
|
+
"type": "number",
|
|
63
|
+
"description": "The port where the packager server is listening on.",
|
|
64
|
+
"default": 8081
|
|
65
|
+
},
|
|
66
|
+
"xcconfig": {
|
|
67
|
+
"type": "string",
|
|
68
|
+
"description": "Explicitly set xcconfig to use"
|
|
69
|
+
},
|
|
70
|
+
"buildFolder": {
|
|
71
|
+
"type": "string",
|
|
72
|
+
"description": "Location for iOS build artifacts. Corresponds to Xcode's \"-derivedDataPath\". Relative to ios directory.",
|
|
73
|
+
"buildFolder": "./build"
|
|
74
|
+
},
|
|
75
|
+
"interactive": {
|
|
76
|
+
"type": "boolean",
|
|
77
|
+
"description": "Explicitly select which scheme and configuration to use before running a build"
|
|
78
|
+
},
|
|
79
|
+
"extraParams": {
|
|
80
|
+
"oneOf": [
|
|
81
|
+
{ "type": "array", "items": { "type": "string" } },
|
|
82
|
+
{ "type": "string" }
|
|
83
|
+
],
|
|
84
|
+
"description": "Custom params that will be passed to xcodebuild command."
|
|
85
|
+
},
|
|
86
|
+
"resetCache": {
|
|
87
|
+
"type": "boolean",
|
|
88
|
+
"description": "Resets metro cache.",
|
|
89
|
+
"default": false
|
|
90
|
+
},
|
|
91
|
+
"binaryPath": {
|
|
92
|
+
"type": "string",
|
|
93
|
+
"description": "Path relative to project root where pre-built .app binary lives."
|
|
94
|
+
}
|
|
15
95
|
},
|
|
16
|
-
|
|
17
|
-
"name": "Run iOS on a device",
|
|
18
|
-
"keys": ["device"]
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"name": "Run iOS on a device with udid",
|
|
22
|
-
"keys": ["udid"]
|
|
23
|
-
}
|
|
24
|
-
],
|
|
25
|
-
"properties": {
|
|
26
|
-
"simulator": {
|
|
27
|
-
"type": "string",
|
|
28
|
-
"description": "Explicitly set simulator to use. Optionally include iOS version between parenthesis at the end to match an exact version: \"iPhone 6 (10.0)\"",
|
|
29
|
-
"examples": [
|
|
30
|
-
"iPhone 14",
|
|
31
|
-
"iPhone 13",
|
|
32
|
-
"iPhone 12",
|
|
33
|
-
"iPhone 11",
|
|
34
|
-
"iPhone X"
|
|
35
|
-
],
|
|
36
|
-
"x-priority": "important"
|
|
37
|
-
},
|
|
38
|
-
"mode": {
|
|
39
|
-
"type": "string",
|
|
40
|
-
"description": "Explicitly set the scheme configuration to use",
|
|
41
|
-
"default": "Debug",
|
|
42
|
-
"examples": ["Debug", "Release"],
|
|
43
|
-
"x-priority": "important"
|
|
44
|
-
},
|
|
45
|
-
"scheme": {
|
|
46
|
-
"type": "string",
|
|
47
|
-
"description": "Explicitly set Xcode scheme to use"
|
|
48
|
-
},
|
|
49
|
-
"device": {
|
|
50
|
-
"type": "string",
|
|
51
|
-
"description": "Explicitly set device to use by name. The value is not required if you have a single device connected."
|
|
52
|
-
},
|
|
53
|
-
"udid": {
|
|
54
|
-
"type": "string",
|
|
55
|
-
"description": "Explicitly set device to use by udid"
|
|
56
|
-
},
|
|
57
|
-
"verbose": {
|
|
58
|
-
"type": "boolean",
|
|
59
|
-
"description": "Do not use xcbeautify or xcpretty even if installed"
|
|
60
|
-
},
|
|
61
|
-
"port": {
|
|
62
|
-
"type": "number",
|
|
63
|
-
"description": "The port where the packager server is listening on.",
|
|
64
|
-
"default": 8081
|
|
65
|
-
},
|
|
66
|
-
"xcconfig": {
|
|
67
|
-
"type": "string",
|
|
68
|
-
"description": "Explicitly set xcconfig to use"
|
|
69
|
-
},
|
|
70
|
-
"buildFolder": {
|
|
71
|
-
"type": "string",
|
|
72
|
-
"description": "Location for iOS build artifacts. Corresponds to Xcode's \"-derivedDataPath\". Relative to ios directory.",
|
|
73
|
-
"buildFolder": "./build"
|
|
74
|
-
},
|
|
75
|
-
"interactive": {
|
|
76
|
-
"type": "boolean",
|
|
77
|
-
"description": "Explicitly select which scheme and configuration to use before running a build"
|
|
78
|
-
},
|
|
79
|
-
"extraParams": {
|
|
80
|
-
"oneOf": [
|
|
81
|
-
{ "type": "array", "items": { "type": "string" } },
|
|
82
|
-
{ "type": "string" }
|
|
83
|
-
],
|
|
84
|
-
"description": "Custom params that will be passed to xcodebuild command."
|
|
85
|
-
},
|
|
86
|
-
"resetCache": {
|
|
87
|
-
"type": "boolean",
|
|
88
|
-
"description": "Resets metro cache.",
|
|
89
|
-
"default": false
|
|
90
|
-
},
|
|
91
|
-
"binaryPath": {
|
|
92
|
-
"type": "string",
|
|
93
|
-
"description": "Path relative to project root where pre-built .app binary lives."
|
|
94
|
-
}
|
|
95
|
-
},
|
|
96
|
-
"examplesFile": "../../../docs/run-ios-examples.md"
|
|
96
|
+
"examplesFile": "../../../docs/run-ios-examples.md"
|
|
97
97
|
}
|
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
2
|
+
"version": 2,
|
|
3
|
+
"continuous": true,
|
|
4
|
+
"outputCapture": "direct-nodejs",
|
|
5
|
+
"cli": "nx",
|
|
6
|
+
"$id": "NxReactNativeStart",
|
|
7
|
+
"$schema": "https://json-schema.org/schema",
|
|
8
|
+
"title": "Packager Server for React Native",
|
|
9
|
+
"description": "Packager Server target options.",
|
|
10
|
+
"type": "object",
|
|
11
|
+
"properties": {
|
|
12
|
+
"port": {
|
|
13
|
+
"type": "number",
|
|
14
|
+
"description": "The port to listen on.",
|
|
15
|
+
"default": 8081
|
|
16
|
+
},
|
|
17
|
+
"resetCache": {
|
|
18
|
+
"type": "boolean",
|
|
19
|
+
"description": "Resets metro cache.",
|
|
20
|
+
"default": false
|
|
21
|
+
},
|
|
22
|
+
"interactive": {
|
|
23
|
+
"type": "boolean",
|
|
24
|
+
"description": "Run packager server in interactive mode.",
|
|
25
|
+
"default": true
|
|
26
|
+
}
|
|
16
27
|
},
|
|
17
|
-
"
|
|
18
|
-
"type": "boolean",
|
|
19
|
-
"description": "Resets metro cache.",
|
|
20
|
-
"default": false
|
|
21
|
-
},
|
|
22
|
-
"interactive": {
|
|
23
|
-
"type": "boolean",
|
|
24
|
-
"description": "Run packager server in interactive mode.",
|
|
25
|
-
"default": true
|
|
26
|
-
}
|
|
27
|
-
},
|
|
28
|
-
"examplesFile": "../../../docs/start-examples.md"
|
|
28
|
+
"examplesFile": "../../../docs/start-examples.md"
|
|
29
29
|
}
|
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
2
|
+
"version": 2,
|
|
3
|
+
"outputCapture": "direct-nodejs",
|
|
4
|
+
"title": "React Native Storybook Load Stories",
|
|
5
|
+
"cli": "nx",
|
|
6
|
+
"description": "Load stories for react native.",
|
|
7
|
+
"type": "object",
|
|
8
|
+
"properties": {
|
|
9
|
+
"searchDir": {
|
|
10
|
+
"type": "array",
|
|
11
|
+
"items": {
|
|
12
|
+
"type": "string"
|
|
13
|
+
},
|
|
14
|
+
"default": [],
|
|
15
|
+
"description": "The directory or directories, relative to the project root, to search for files in."
|
|
16
|
+
},
|
|
17
|
+
"outputFile": {
|
|
18
|
+
"type": "string",
|
|
19
|
+
"description": "The output file that will be written. It is relative to the project directory.",
|
|
20
|
+
"default": "./.storybook/story-loader.ts"
|
|
21
|
+
},
|
|
22
|
+
"pattern": {
|
|
23
|
+
"type": "string",
|
|
24
|
+
"description": "The pattern of files to look at. It can be a specific file, or any valid glob. Note: if using the CLI, globs with `**/*...` must be escaped with quotes",
|
|
25
|
+
"default": "**/*.stories.@(js|jsx|ts|tsx|md)"
|
|
26
|
+
}
|
|
16
27
|
},
|
|
17
|
-
"
|
|
18
|
-
"type": "string",
|
|
19
|
-
"description": "The output file that will be written. It is relative to the project directory.",
|
|
20
|
-
"default": "./.storybook/story-loader.ts"
|
|
21
|
-
},
|
|
22
|
-
"pattern": {
|
|
23
|
-
"type": "string",
|
|
24
|
-
"description": "The pattern of files to look at. It can be a specific file, or any valid glob. Note: if using the CLI, globs with `**/*...` must be escaped with quotes",
|
|
25
|
-
"default": "**/*.stories.@(js|jsx|ts|tsx|md)"
|
|
26
|
-
}
|
|
27
|
-
},
|
|
28
|
-
"required": ["searchDir", "outputFile", "pattern"]
|
|
28
|
+
"required": ["searchDir", "outputFile", "pattern"]
|
|
29
29
|
}
|
|
@@ -1,33 +1,33 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
2
|
+
"version": 2,
|
|
3
|
+
"outputCapture": "direct-nodejs",
|
|
4
|
+
"cli": "nx",
|
|
5
|
+
"$id": "NxReactNativeSyncDeps",
|
|
6
|
+
"$schema": "https://json-schema.org/schema",
|
|
7
|
+
"title": "Sync Deps for React Native",
|
|
8
|
+
"description": "Updates `package.json` with project dependencies.",
|
|
9
|
+
"type": "object",
|
|
10
|
+
"properties": {
|
|
11
|
+
"include": {
|
|
12
|
+
"type": "array",
|
|
13
|
+
"items": {
|
|
14
|
+
"type": "string"
|
|
15
|
+
},
|
|
16
|
+
"default": [],
|
|
17
|
+
"description": "An array of additional npm packages to include."
|
|
18
|
+
},
|
|
19
|
+
"exclude": {
|
|
20
|
+
"type": "array",
|
|
21
|
+
"items": {
|
|
22
|
+
"type": "string"
|
|
23
|
+
},
|
|
24
|
+
"default": [],
|
|
25
|
+
"description": "An array of npm packages to exclude."
|
|
26
|
+
},
|
|
27
|
+
"all": {
|
|
28
|
+
"type": "boolean",
|
|
29
|
+
"description": "Copy all dependencies and devDependencies from the workspace root package.json.",
|
|
30
|
+
"default": false
|
|
31
|
+
}
|
|
31
32
|
}
|
|
32
|
-
}
|
|
33
33
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
2
|
+
"$schema": "http://json-schema.org/schema",
|
|
3
|
+
"version": 2,
|
|
4
|
+
"cli": "nx",
|
|
5
|
+
"$id": "NxReactNativeUpgrade",
|
|
6
|
+
"title": "React Native Upgrade Executor",
|
|
7
|
+
"description": "Upgrade React Native code for project.",
|
|
8
|
+
"type": "object",
|
|
9
|
+
"properties": {},
|
|
10
|
+
"required": []
|
|
11
11
|
}
|