@rnx-kit/cli 1.1.0 → 1.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/lib/build.d.ts +1 -1
- package/lib/bundle/cliOptions.d.ts +3 -3
- package/lib/clean.d.ts +1 -1
- package/lib/copy-assets.d.ts +2 -2
- package/lib/ram-bundle.d.ts +5 -5
- package/lib/run.d.ts +1 -1
- package/package.json +3 -3
package/lib/build.d.ts
CHANGED
|
@@ -26,10 +26,10 @@ export declare const rnxBuildCommand: {
|
|
|
26
26
|
default: string;
|
|
27
27
|
parse: typeof asDestination;
|
|
28
28
|
} | {
|
|
29
|
+
default?: undefined;
|
|
29
30
|
name: string;
|
|
30
31
|
description: string;
|
|
31
32
|
parse: typeof setCcacheDir;
|
|
32
|
-
default?: undefined;
|
|
33
33
|
})[];
|
|
34
34
|
};
|
|
35
35
|
export {};
|
|
@@ -3,8 +3,8 @@ import { asBoolean, asNumber, asTransformProfile } from "../helpers/parsers.ts";
|
|
|
3
3
|
export declare const commonBundleCommandOptions: ({
|
|
4
4
|
name: string;
|
|
5
5
|
description: string;
|
|
6
|
-
default?: undefined;
|
|
7
6
|
parse?: undefined;
|
|
7
|
+
default?: undefined;
|
|
8
8
|
} | {
|
|
9
9
|
name: string;
|
|
10
10
|
description: string;
|
|
@@ -26,14 +26,14 @@ export declare const commonBundleCommandOptions: ({
|
|
|
26
26
|
default: string;
|
|
27
27
|
parse?: undefined;
|
|
28
28
|
} | {
|
|
29
|
-
default?: undefined;
|
|
30
29
|
name: string;
|
|
31
30
|
description: string;
|
|
32
31
|
parse: typeof asNumber;
|
|
33
|
-
} | {
|
|
34
32
|
default?: undefined;
|
|
33
|
+
} | {
|
|
35
34
|
name: string;
|
|
36
35
|
description: string;
|
|
37
36
|
parse: typeof asTransformProfile;
|
|
37
|
+
default?: undefined;
|
|
38
38
|
})[];
|
|
39
39
|
//# sourceMappingURL=cliOptions.d.ts.map
|
package/lib/clean.d.ts
CHANGED
|
@@ -11,10 +11,10 @@ export declare const rnxCleanCommand: {
|
|
|
11
11
|
func: typeof rnxClean;
|
|
12
12
|
description: string;
|
|
13
13
|
options: ({
|
|
14
|
+
parse?: undefined;
|
|
14
15
|
name: string;
|
|
15
16
|
description: string;
|
|
16
17
|
default: string;
|
|
17
|
-
parse?: undefined;
|
|
18
18
|
} | {
|
|
19
19
|
name: string;
|
|
20
20
|
description: string;
|
package/lib/copy-assets.d.ts
CHANGED
|
@@ -105,15 +105,15 @@ export declare const rnxCopyAssetsCommand: {
|
|
|
105
105
|
description: string;
|
|
106
106
|
func: (_argv: string[], config: CLIConfig, options: Options) => Promise<void>;
|
|
107
107
|
options: ({
|
|
108
|
-
default?: undefined;
|
|
109
108
|
name: string;
|
|
110
109
|
description: string;
|
|
111
110
|
parse: typeof parsePlatform;
|
|
112
|
-
} | {
|
|
113
111
|
default?: undefined;
|
|
112
|
+
} | {
|
|
114
113
|
parse?: undefined;
|
|
115
114
|
name: string;
|
|
116
115
|
description: string;
|
|
116
|
+
default?: undefined;
|
|
117
117
|
} | {
|
|
118
118
|
parse?: undefined;
|
|
119
119
|
name: string;
|
package/lib/ram-bundle.d.ts
CHANGED
|
@@ -9,30 +9,30 @@ export declare const rnxRamBundleCommand: {
|
|
|
9
9
|
description: string;
|
|
10
10
|
func: typeof rnxRamBundle;
|
|
11
11
|
options: ({
|
|
12
|
-
name: string;
|
|
13
|
-
description: string;
|
|
14
12
|
default?: undefined;
|
|
15
13
|
parse?: undefined;
|
|
14
|
+
name: string;
|
|
15
|
+
description: string;
|
|
16
16
|
} | {
|
|
17
|
+
default?: undefined;
|
|
17
18
|
name: string;
|
|
18
19
|
description: string;
|
|
19
20
|
parse: typeof import("@rnx-kit/tools-react-native").parsePlatform;
|
|
20
|
-
default?: undefined;
|
|
21
21
|
} | {
|
|
22
22
|
name: string;
|
|
23
23
|
description: string;
|
|
24
24
|
default: boolean;
|
|
25
25
|
parse: typeof import("./helpers/parsers").asBoolean;
|
|
26
26
|
} | {
|
|
27
|
+
default?: undefined;
|
|
27
28
|
name: string;
|
|
28
29
|
description: string;
|
|
29
30
|
parse: typeof import("./helpers/parsers").asBoolean;
|
|
30
|
-
default?: undefined;
|
|
31
31
|
} | {
|
|
32
|
+
parse?: undefined;
|
|
32
33
|
name: string;
|
|
33
34
|
description: string;
|
|
34
35
|
default: string;
|
|
35
|
-
parse?: undefined;
|
|
36
36
|
} | {
|
|
37
37
|
default?: undefined;
|
|
38
38
|
name: string;
|
package/lib/run.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rnx-kit/cli",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Command-line interface for working with kit packages in your repo",
|
|
5
5
|
"homepage": "https://github.com/microsoft/rnx-kit/tree/main/packages/cli#readme",
|
|
6
6
|
"license": "MIT",
|
|
@@ -48,14 +48,14 @@
|
|
|
48
48
|
"@rnx-kit/metro-plugin-typescript": "^0.5.4",
|
|
49
49
|
"@rnx-kit/metro-serializer": "^2.0.0",
|
|
50
50
|
"@rnx-kit/metro-serializer-esbuild": "^0.3.1",
|
|
51
|
-
"@rnx-kit/metro-service": "^4.1.
|
|
51
|
+
"@rnx-kit/metro-service": "^4.1.5",
|
|
52
52
|
"@rnx-kit/third-party-notices": "^2.0.0",
|
|
53
53
|
"@rnx-kit/tools-android": "^0.2.2",
|
|
54
54
|
"@rnx-kit/tools-apple": "^0.2.2",
|
|
55
55
|
"@rnx-kit/tools-filesystem": "^0.2.0",
|
|
56
56
|
"@rnx-kit/tools-language": "^3.0.1",
|
|
57
57
|
"@rnx-kit/tools-node": "^3.0.4",
|
|
58
|
-
"@rnx-kit/tools-react-native": "^2.3.
|
|
58
|
+
"@rnx-kit/tools-react-native": "^2.3.5",
|
|
59
59
|
"@rnx-kit/types-bundle-config": "^1.0.0",
|
|
60
60
|
"@rnx-kit/types-kit-config": "^1.0.0",
|
|
61
61
|
"@rnx-kit/types-node": "^1.0.0",
|