@rnx-kit/cli 0.18.0 → 0.18.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/README.md +87 -55
- package/lib/build/android.js +2 -4
- package/lib/build/apple.js +3 -7
- package/lib/build/watcher.d.ts +2 -1
- package/lib/build/watcher.js +22 -13
- package/lib/index.d.ts +9 -8
- package/lib/index.js +17 -25
- package/package.json +4 -10
package/README.md
CHANGED
|
@@ -116,51 +116,6 @@ dependencies.
|
|
|
116
116
|
|
|
117
117
|
<!-- @rnx-kit/cli/bundle end -->
|
|
118
118
|
|
|
119
|
-
## `rnx-cli config`
|
|
120
|
-
|
|
121
|
-
Routes to
|
|
122
|
-
[`react-native config`](https://github.com/react-native-community/cli/blob/main/packages/cli-config#readme).
|
|
123
|
-
|
|
124
|
-
## `rnx-cli doctor`
|
|
125
|
-
|
|
126
|
-
Routes to
|
|
127
|
-
[`react-native doctor`](https://github.com/react-native-community/cli/blob/main/packages/cli-doctor#readme).
|
|
128
|
-
|
|
129
|
-
## `rnx-cli info`
|
|
130
|
-
|
|
131
|
-
Routes to
|
|
132
|
-
[`react-native info`](https://github.com/react-native-community/cli/blob/main/packages/cli-doctor#info).
|
|
133
|
-
|
|
134
|
-
## `rnx-cli build-android`
|
|
135
|
-
|
|
136
|
-
Routes to
|
|
137
|
-
[`react-native build-android`](https://github.com/react-native-community/cli/blob/main/packages/cli-platform-android#build-android).
|
|
138
|
-
|
|
139
|
-
## `rnx-cli build-ios`
|
|
140
|
-
|
|
141
|
-
Routes to
|
|
142
|
-
[`react-native build-ios`](https://github.com/react-native-community/cli/blob/main/packages/cli-platform-ios#build-ios).
|
|
143
|
-
|
|
144
|
-
## `rnx-cli log-android`
|
|
145
|
-
|
|
146
|
-
Routes to
|
|
147
|
-
[`react-native log-android`](https://github.com/react-native-community/cli/blob/main/packages/cli-platform-android#log-android).
|
|
148
|
-
|
|
149
|
-
## `rnx-cli log-ios`
|
|
150
|
-
|
|
151
|
-
Routes to
|
|
152
|
-
[`react-native log-ios`](https://github.com/react-native-community/cli/blob/main/packages/cli-platform-ios#log-ios).
|
|
153
|
-
|
|
154
|
-
## `rnx-cli run-android`
|
|
155
|
-
|
|
156
|
-
Routes to
|
|
157
|
-
[`react-native run-android`](https://github.com/react-native-community/cli/blob/main/packages/cli-platform-android#run-android).
|
|
158
|
-
|
|
159
|
-
## `rnx-cli run-ios`
|
|
160
|
-
|
|
161
|
-
Routes to
|
|
162
|
-
[`react-native run-ios`](https://github.com/react-native-community/cli/blob/main/packages/cli-platform-ios#run-ios).
|
|
163
|
-
|
|
164
119
|
## `rnx-cli start`
|
|
165
120
|
|
|
166
121
|
Start a bundle server for a package using [Metro][]. The bundle server uses
|
|
@@ -235,6 +190,59 @@ from the bundle configuration (or its [defaults](#bundle-defaults)).
|
|
|
235
190
|
|
|
236
191
|
<!-- @rnx-kit/cli/start end -->
|
|
237
192
|
|
|
193
|
+
## `rnx-cli build`
|
|
194
|
+
|
|
195
|
+
Builds the native bits in your project.
|
|
196
|
+
|
|
197
|
+
```sh
|
|
198
|
+
yarn rnx-cli build [options]
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
<!-- @rnx-kit/cli/build start -->
|
|
202
|
+
|
|
203
|
+
| Option | Description |
|
|
204
|
+
| ------------------------------ | ---------------------------------------------------------------------------- |
|
|
205
|
+
| -p, --platform <string> | Target platform |
|
|
206
|
+
| --workspace <string> | Path, relative to project root, of the Xcode workspace to build (macOS only) |
|
|
207
|
+
| --scheme <string> | Name of scheme to build (Apple platforms only) |
|
|
208
|
+
| --configuration <string> | Build configuration for building the app; 'Debug' or 'Release' |
|
|
209
|
+
| --destination <string> | Destination of the built app; 'device', 'emulator', or 'simulator' |
|
|
210
|
+
|
|
211
|
+
<!-- @rnx-kit/cli/build end -->
|
|
212
|
+
|
|
213
|
+
### Example Commands
|
|
214
|
+
|
|
215
|
+
```sh
|
|
216
|
+
yarn rnx-cli build -p ios
|
|
217
|
+
```
|
|
218
|
+
|
|
219
|
+
## `rnx-cli run`
|
|
220
|
+
|
|
221
|
+
Launches the native app (building it first if necessary).
|
|
222
|
+
|
|
223
|
+
```sh
|
|
224
|
+
yarn rnx-cli run [options]
|
|
225
|
+
```
|
|
226
|
+
|
|
227
|
+
<!-- @rnx-kit/cli/run start -->
|
|
228
|
+
|
|
229
|
+
| Option | Description |
|
|
230
|
+
| ------------------------------ | ---------------------------------------------------------------------------- |
|
|
231
|
+
| -p, --platform <string> | Target platform |
|
|
232
|
+
| --workspace <string> | Path, relative to project root, of the Xcode workspace to build (macOS only) |
|
|
233
|
+
| --scheme <string> | Name of scheme to build (Apple platforms only) |
|
|
234
|
+
| --configuration <string> | Build configuration for building the app; 'Debug' or 'Release' |
|
|
235
|
+
| --destination <string> | Destination of the built app; 'device', 'emulator', or 'simulator' |
|
|
236
|
+
| -d, --device <string> | The name of the device to launch the app in |
|
|
237
|
+
|
|
238
|
+
<!-- @rnx-kit/cli/run end -->
|
|
239
|
+
|
|
240
|
+
### Example Commands
|
|
241
|
+
|
|
242
|
+
```sh
|
|
243
|
+
yarn rnx-cli run -p ios
|
|
244
|
+
```
|
|
245
|
+
|
|
238
246
|
## `rnx-cli align-deps`
|
|
239
247
|
|
|
240
248
|
Manage dependencies within a repository and across many repositories.
|
|
@@ -281,19 +289,43 @@ yarn rnx-cli write-third-party-notices [options]
|
|
|
281
289
|
|
|
282
290
|
<!-- @rnx-kit/cli/write-third-party-notices start -->
|
|
283
291
|
|
|
284
|
-
| Option | Description
|
|
285
|
-
| -------------------------------- |
|
|
286
|
-
| --root-path <path> | The root of the repo
|
|
287
|
-
| --source-map-file <
|
|
288
|
-
| --json |
|
|
289
|
-
| --output-file <
|
|
290
|
-
| --ignore-scopes <string> |
|
|
291
|
-
| --ignore-modules <string> |
|
|
292
|
-
| --preamble-text <string> | A
|
|
293
|
-
| --additional-text <string> | A
|
|
292
|
+
| Option | Description |
|
|
293
|
+
| -------------------------------- | --------------------------------------------------------------------- |
|
|
294
|
+
| --root-path <path> | The root of the repo to start resolving modules from |
|
|
295
|
+
| --source-map-file <path> | The source map file to generate license contents for |
|
|
296
|
+
| --json | Output license information as a JSON |
|
|
297
|
+
| --output-file <path> | The output file to write the license file to |
|
|
298
|
+
| --ignore-scopes <string> | npm scopes to ignore and not emit license information for |
|
|
299
|
+
| --ignore-modules <string> | Modules (JS packages) to not emit license information for |
|
|
300
|
+
| --preamble-text <string> | A list of lines to prepend at the start of the generated license file |
|
|
301
|
+
| --additional-text <string> | A list of lines to append at the end of the generated license file |
|
|
302
|
+
| --full-license-text | Include full license text in the JSON output |
|
|
294
303
|
|
|
295
304
|
<!-- @rnx-kit/cli/write-third-party-notices end -->
|
|
296
305
|
|
|
306
|
+
## Other Commands
|
|
307
|
+
|
|
308
|
+
The following commands route to `@react-native-community/cli`:
|
|
309
|
+
|
|
310
|
+
- `rnx-cli build-android` →
|
|
311
|
+
[`react-native build-android`](https://github.com/react-native-community/cli/blob/main/packages/cli-platform-android#build-android)
|
|
312
|
+
- `rnx-cli build-ios` →
|
|
313
|
+
[`react-native build-ios`](https://github.com/react-native-community/cli/blob/main/packages/cli-platform-ios#build-ios)
|
|
314
|
+
- `rnx-cli config` →
|
|
315
|
+
[`react-native config`](https://github.com/react-native-community/cli/blob/main/packages/cli-config#readme)
|
|
316
|
+
- `rnx-cli doctor` →
|
|
317
|
+
[`react-native doctor`](https://github.com/react-native-community/cli/blob/main/packages/cli-doctor#readme)
|
|
318
|
+
- `rnx-cli info` →
|
|
319
|
+
[`react-native info`](https://github.com/react-native-community/cli/blob/main/packages/cli-doctor#info)
|
|
320
|
+
- `rnx-cli log-android` →
|
|
321
|
+
[`react-native log-android`](https://github.com/react-native-community/cli/blob/main/packages/cli-platform-android#log-android)
|
|
322
|
+
- `rnx-cli log-ios` →
|
|
323
|
+
[`react-native log-ios`](https://github.com/react-native-community/cli/blob/main/packages/cli-platform-ios#log-ios)
|
|
324
|
+
- `rnx-cli run-android` →
|
|
325
|
+
[`react-native run-android`](https://github.com/react-native-community/cli/blob/main/packages/cli-platform-android#run-android)
|
|
326
|
+
- `rnx-cli run-ios` →
|
|
327
|
+
[`react-native run-ios`](https://github.com/react-native-community/cli/blob/main/packages/cli-platform-ios#run-ios)
|
|
328
|
+
|
|
297
329
|
<!-- References -->
|
|
298
330
|
|
|
299
331
|
[@rnx-kit/align-deps]:
|
package/lib/build/android.js
CHANGED
|
@@ -16,10 +16,8 @@ function buildAndroid(config, buildParams, logger = (0, ora_1.default)()) {
|
|
|
16
16
|
return Promise.resolve(null);
|
|
17
17
|
}
|
|
18
18
|
return import("@rnx-kit/tools-android").then(({ assemble }) => {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
(0, watcher_1.watch)(gradle, logger, () => resolve(sourceDir), resolve);
|
|
22
|
-
});
|
|
19
|
+
const gradle = assemble(sourceDir, buildParams);
|
|
20
|
+
return (0, watcher_1.watch)(gradle, logger, () => sourceDir);
|
|
23
21
|
});
|
|
24
22
|
}
|
|
25
23
|
//# sourceMappingURL=android.js.map
|
package/lib/build/apple.js
CHANGED
|
@@ -4,13 +4,9 @@ exports.runBuild = runBuild;
|
|
|
4
4
|
const watcher_1 = require("./watcher");
|
|
5
5
|
function runBuild(xcworkspace, buildParams, logger) {
|
|
6
6
|
return import("@rnx-kit/tools-apple").then(({ xcodebuild }) => {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
logger.info(text);
|
|
11
|
-
});
|
|
12
|
-
(0, watcher_1.watch)(build, logger, onSuccess, resolve);
|
|
13
|
-
});
|
|
7
|
+
const log = (message) => logger.info(message);
|
|
8
|
+
const build = xcodebuild(xcworkspace, buildParams, log);
|
|
9
|
+
return (0, watcher_1.watch)(build, logger, () => ({ xcworkspace, args: build.spawnargs }));
|
|
14
10
|
});
|
|
15
11
|
}
|
|
16
12
|
//# sourceMappingURL=apple.js.map
|
package/lib/build/watcher.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { ChildProcessWithoutNullStreams } from "node:child_process";
|
|
2
2
|
import type { Ora } from "ora";
|
|
3
|
-
export
|
|
3
|
+
export type ExitCode = number | null;
|
|
4
|
+
export declare function watch<T>(subproc: ChildProcessWithoutNullStreams, logger: Ora, onSuccess: () => T): Promise<ExitCode | T>;
|
|
4
5
|
//# sourceMappingURL=watcher.d.ts.map
|
package/lib/build/watcher.js
CHANGED
|
@@ -1,22 +1,31 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.watch = watch;
|
|
4
|
-
function watch(subproc, logger, onSuccess
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
onSuccess();
|
|
4
|
+
function watch(subproc, logger, onSuccess) {
|
|
5
|
+
return new Promise((resolve) => {
|
|
6
|
+
const errors = [];
|
|
7
|
+
const isCI = Boolean(process.env.CI);
|
|
8
|
+
if (isCI) {
|
|
9
|
+
subproc.stdout.on("data", (chunk) => process.stdout.write(chunk));
|
|
10
|
+
subproc.stderr.on("data", (chunk) => process.stderr.write(chunk));
|
|
12
11
|
}
|
|
13
12
|
else {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
onFail(code);
|
|
13
|
+
subproc.stdout.on("data", () => (logger.text += "."));
|
|
14
|
+
subproc.stderr.on("data", (data) => errors.push(data));
|
|
17
15
|
}
|
|
16
|
+
subproc.on("close", (code) => {
|
|
17
|
+
if (code === 0) {
|
|
18
|
+
logger.succeed("Build succeeded");
|
|
19
|
+
resolve(onSuccess());
|
|
20
|
+
}
|
|
21
|
+
else {
|
|
22
|
+
logger.fail(Buffer.concat(errors).toString());
|
|
23
|
+
process.exitCode = code ?? 1;
|
|
24
|
+
resolve(code);
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
logger.info(`Command: ${subproc.spawnargs.join(" ")}`);
|
|
28
|
+
logger.start("Building");
|
|
18
29
|
});
|
|
19
|
-
logger.info(`Command: ${subproc.spawnargs.join(" ")}`);
|
|
20
|
-
logger.start("Building");
|
|
21
30
|
}
|
|
22
31
|
//# sourceMappingURL=watcher.js.map
|
package/lib/index.d.ts
CHANGED
|
@@ -1,4 +1,13 @@
|
|
|
1
1
|
import type { Command } from "@react-native-community/cli-types";
|
|
2
|
+
import { rnxBuild, rnxBuildCommand } from "./build";
|
|
3
|
+
import { rnxBundle, rnxBundleCommand } from "./bundle";
|
|
4
|
+
import { rnxClean, rnxCleanCommand } from "./clean";
|
|
5
|
+
import { copyProjectAssets, rnxCopyAssetsCommand } from "./copy-assets";
|
|
6
|
+
import { rnxRamBundle, rnxRamBundleCommand } from "./ram-bundle";
|
|
7
|
+
import { rnxRun, rnxRunCommand } from "./run";
|
|
8
|
+
import { rnxStart, rnxStartCommand } from "./start";
|
|
9
|
+
import { rnxTest, rnxTestCommand } from "./test";
|
|
10
|
+
export { copyProjectAssets, rnxBuild, rnxBuildCommand, rnxBundle, rnxBundleCommand, rnxClean, rnxCleanCommand, rnxCopyAssetsCommand, rnxRamBundle, rnxRamBundleCommand, rnxRun, rnxRunCommand, rnxStart, rnxStartCommand, rnxTest, rnxTestCommand, };
|
|
2
11
|
export declare const reactNativeConfig: {
|
|
3
12
|
commands: Command<false>[];
|
|
4
13
|
};
|
|
@@ -37,12 +46,4 @@ export declare const rnxWriteThirdPartyNoticesCommand: {
|
|
|
37
46
|
default: string | false | undefined;
|
|
38
47
|
}[];
|
|
39
48
|
};
|
|
40
|
-
export { rnxBuild, rnxBuildCommand } from "./build";
|
|
41
|
-
export { rnxBundle, rnxBundleCommand } from "./bundle";
|
|
42
|
-
export { rnxClean, rnxCleanCommand } from "./clean";
|
|
43
|
-
export { copyProjectAssets, rnxCopyAssetsCommand } from "./copy-assets";
|
|
44
|
-
export { rnxRamBundle, rnxRamBundleCommand } from "./ram-bundle";
|
|
45
|
-
export { rnxRun, rnxRunCommand } from "./run";
|
|
46
|
-
export { rnxStart, rnxStartCommand } from "./start";
|
|
47
|
-
export { rnxTest, rnxTestCommand } from "./test";
|
|
48
49
|
//# sourceMappingURL=index.d.ts.map
|
package/lib/index.js
CHANGED
|
@@ -1,16 +1,32 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.rnxWriteThirdPartyNoticesCommand = exports.rnxWriteThirdPartyNotices = exports.rnxAlignDepsCommand = exports.rnxAlignDeps = exports.reactNativeConfig = exports.rnxTestCommand = exports.rnxTest = exports.rnxStartCommand = exports.rnxStart = exports.rnxRunCommand = exports.rnxRun = exports.rnxRamBundleCommand = exports.rnxRamBundle = exports.rnxCopyAssetsCommand = exports.rnxCleanCommand = exports.rnxClean = exports.rnxBundleCommand = exports.rnxBundle = exports.rnxBuildCommand = exports.rnxBuild = exports.copyProjectAssets = void 0;
|
|
4
4
|
const align_deps_1 = require("@rnx-kit/align-deps");
|
|
5
5
|
const third_party_notices_1 = require("@rnx-kit/third-party-notices");
|
|
6
6
|
const build_1 = require("./build");
|
|
7
|
+
Object.defineProperty(exports, "rnxBuild", { enumerable: true, get: function () { return build_1.rnxBuild; } });
|
|
8
|
+
Object.defineProperty(exports, "rnxBuildCommand", { enumerable: true, get: function () { return build_1.rnxBuildCommand; } });
|
|
7
9
|
const bundle_1 = require("./bundle");
|
|
10
|
+
Object.defineProperty(exports, "rnxBundle", { enumerable: true, get: function () { return bundle_1.rnxBundle; } });
|
|
11
|
+
Object.defineProperty(exports, "rnxBundleCommand", { enumerable: true, get: function () { return bundle_1.rnxBundleCommand; } });
|
|
8
12
|
const clean_1 = require("./clean");
|
|
13
|
+
Object.defineProperty(exports, "rnxClean", { enumerable: true, get: function () { return clean_1.rnxClean; } });
|
|
14
|
+
Object.defineProperty(exports, "rnxCleanCommand", { enumerable: true, get: function () { return clean_1.rnxCleanCommand; } });
|
|
9
15
|
const copy_assets_1 = require("./copy-assets");
|
|
16
|
+
Object.defineProperty(exports, "copyProjectAssets", { enumerable: true, get: function () { return copy_assets_1.copyProjectAssets; } });
|
|
17
|
+
Object.defineProperty(exports, "rnxCopyAssetsCommand", { enumerable: true, get: function () { return copy_assets_1.rnxCopyAssetsCommand; } });
|
|
10
18
|
const ram_bundle_1 = require("./ram-bundle");
|
|
19
|
+
Object.defineProperty(exports, "rnxRamBundle", { enumerable: true, get: function () { return ram_bundle_1.rnxRamBundle; } });
|
|
20
|
+
Object.defineProperty(exports, "rnxRamBundleCommand", { enumerable: true, get: function () { return ram_bundle_1.rnxRamBundleCommand; } });
|
|
11
21
|
const run_1 = require("./run");
|
|
22
|
+
Object.defineProperty(exports, "rnxRun", { enumerable: true, get: function () { return run_1.rnxRun; } });
|
|
23
|
+
Object.defineProperty(exports, "rnxRunCommand", { enumerable: true, get: function () { return run_1.rnxRunCommand; } });
|
|
12
24
|
const start_1 = require("./start");
|
|
25
|
+
Object.defineProperty(exports, "rnxStart", { enumerable: true, get: function () { return start_1.rnxStart; } });
|
|
26
|
+
Object.defineProperty(exports, "rnxStartCommand", { enumerable: true, get: function () { return start_1.rnxStartCommand; } });
|
|
13
27
|
const test_1 = require("./test");
|
|
28
|
+
Object.defineProperty(exports, "rnxTest", { enumerable: true, get: function () { return test_1.rnxTest; } });
|
|
29
|
+
Object.defineProperty(exports, "rnxTestCommand", { enumerable: true, get: function () { return test_1.rnxTestCommand; } });
|
|
14
30
|
exports.reactNativeConfig = {
|
|
15
31
|
commands: [
|
|
16
32
|
bundle_1.rnxBundleCommand,
|
|
@@ -31,28 +47,4 @@ exports.rnxAlignDepsCommand = align_deps_1.alignDepsCommand;
|
|
|
31
47
|
// @rnx-kit/third-party-notices
|
|
32
48
|
exports.rnxWriteThirdPartyNotices = third_party_notices_1.writeThirdPartyNoticesCommand.func;
|
|
33
49
|
exports.rnxWriteThirdPartyNoticesCommand = third_party_notices_1.writeThirdPartyNoticesCommand;
|
|
34
|
-
var build_2 = require("./build");
|
|
35
|
-
Object.defineProperty(exports, "rnxBuild", { enumerable: true, get: function () { return build_2.rnxBuild; } });
|
|
36
|
-
Object.defineProperty(exports, "rnxBuildCommand", { enumerable: true, get: function () { return build_2.rnxBuildCommand; } });
|
|
37
|
-
var bundle_2 = require("./bundle");
|
|
38
|
-
Object.defineProperty(exports, "rnxBundle", { enumerable: true, get: function () { return bundle_2.rnxBundle; } });
|
|
39
|
-
Object.defineProperty(exports, "rnxBundleCommand", { enumerable: true, get: function () { return bundle_2.rnxBundleCommand; } });
|
|
40
|
-
var clean_2 = require("./clean");
|
|
41
|
-
Object.defineProperty(exports, "rnxClean", { enumerable: true, get: function () { return clean_2.rnxClean; } });
|
|
42
|
-
Object.defineProperty(exports, "rnxCleanCommand", { enumerable: true, get: function () { return clean_2.rnxCleanCommand; } });
|
|
43
|
-
var copy_assets_2 = require("./copy-assets");
|
|
44
|
-
Object.defineProperty(exports, "copyProjectAssets", { enumerable: true, get: function () { return copy_assets_2.copyProjectAssets; } });
|
|
45
|
-
Object.defineProperty(exports, "rnxCopyAssetsCommand", { enumerable: true, get: function () { return copy_assets_2.rnxCopyAssetsCommand; } });
|
|
46
|
-
var ram_bundle_2 = require("./ram-bundle");
|
|
47
|
-
Object.defineProperty(exports, "rnxRamBundle", { enumerable: true, get: function () { return ram_bundle_2.rnxRamBundle; } });
|
|
48
|
-
Object.defineProperty(exports, "rnxRamBundleCommand", { enumerable: true, get: function () { return ram_bundle_2.rnxRamBundleCommand; } });
|
|
49
|
-
var run_2 = require("./run");
|
|
50
|
-
Object.defineProperty(exports, "rnxRun", { enumerable: true, get: function () { return run_2.rnxRun; } });
|
|
51
|
-
Object.defineProperty(exports, "rnxRunCommand", { enumerable: true, get: function () { return run_2.rnxRunCommand; } });
|
|
52
|
-
var start_2 = require("./start");
|
|
53
|
-
Object.defineProperty(exports, "rnxStart", { enumerable: true, get: function () { return start_2.rnxStart; } });
|
|
54
|
-
Object.defineProperty(exports, "rnxStartCommand", { enumerable: true, get: function () { return start_2.rnxStartCommand; } });
|
|
55
|
-
var test_2 = require("./test");
|
|
56
|
-
Object.defineProperty(exports, "rnxTest", { enumerable: true, get: function () { return test_2.rnxTest; } });
|
|
57
|
-
Object.defineProperty(exports, "rnxTestCommand", { enumerable: true, get: function () { return test_2.rnxTestCommand; } });
|
|
58
50
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rnx-kit/cli",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.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",
|
|
@@ -34,21 +34,20 @@
|
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"build": "rnx-kit-scripts build",
|
|
37
|
-
"depcheck": "rnx-kit-scripts depcheck",
|
|
38
37
|
"format": "rnx-kit-scripts format",
|
|
39
38
|
"lint": "rnx-kit-scripts lint",
|
|
40
39
|
"test": "rnx-kit-scripts test"
|
|
41
40
|
},
|
|
42
41
|
"dependencies": {
|
|
43
|
-
"@rnx-kit/align-deps": "^3.0.
|
|
42
|
+
"@rnx-kit/align-deps": "^3.0.1",
|
|
44
43
|
"@rnx-kit/config": "^0.7.0",
|
|
45
44
|
"@rnx-kit/console": "^2.0.0",
|
|
46
45
|
"@rnx-kit/metro-plugin-cyclic-dependencies-detector": "^2.0.0",
|
|
47
46
|
"@rnx-kit/metro-plugin-duplicates-checker": "^3.0.0",
|
|
48
47
|
"@rnx-kit/metro-plugin-typescript": "^0.5.0",
|
|
49
48
|
"@rnx-kit/metro-serializer": "^2.0.0",
|
|
50
|
-
"@rnx-kit/metro-serializer-esbuild": "^0.2.
|
|
51
|
-
"@rnx-kit/metro-service": "^4.0.
|
|
49
|
+
"@rnx-kit/metro-serializer-esbuild": "^0.2.1",
|
|
50
|
+
"@rnx-kit/metro-service": "^4.0.1",
|
|
52
51
|
"@rnx-kit/third-party-notices": "^2.0.0",
|
|
53
52
|
"@rnx-kit/tools-android": "^0.2.0",
|
|
54
53
|
"@rnx-kit/tools-apple": "^0.2.0",
|
|
@@ -100,11 +99,6 @@
|
|
|
100
99
|
"engines": {
|
|
101
100
|
"node": ">=16.17"
|
|
102
101
|
},
|
|
103
|
-
"depcheck": {
|
|
104
|
-
"ignoreMatches": [
|
|
105
|
-
"connect"
|
|
106
|
-
]
|
|
107
|
-
},
|
|
108
102
|
"jest": {
|
|
109
103
|
"preset": "@rnx-kit/jest-preset/private"
|
|
110
104
|
}
|