Skip to content

Commit b7bd34d

Browse files
committed
fixup! chore(deps): update dependency @typescript/native-preview to v7.0.0-dev.20260320.1
1 parent 481f743 commit b7bd34d

48 files changed

Lines changed: 36 additions & 38 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

packages/app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,15 @@
8080
"postpack": "node scripts/internal/pack.mts post",
8181
"set-react-version": "node scripts/internal/set-react-version.mts",
8282
"test": "node scripts/internal/test.mts",
83-
"test:js": "node --no-warnings --test $(git ls-files '*.test.ts')",
83+
"test:js": "node --no-warnings --test $(git ls-files '*.test.mts')",
8484
"test:matrix": "node scripts/testing/test-matrix.mts",
8585
"test:rb": "bundle exec ruby -Ilib:test -e \"Dir.glob('./test/test_*.rb').each { |file| require(file) }\""
8686
},
8787
"dependencies": {
88+
"@isaacs/cliui": "^9.0.0",
8889
"@rnx-kit/react-native-host": "^0.5.15",
8990
"@rnx-kit/tools-react-native": "^2.1.0",
9091
"ajv": "^8.0.0",
91-
"cliui": "^8.0.0",
9292
"fast-xml-parser": "^5.3.4",
9393
"prompts": "^2.4.0",
9494
"semver": "^7.3.5",

packages/app/scripts/embed-manifest/validate.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @ts-check
2-
import Ajv from "ajv";
2+
import { Ajv } from "ajv";
33
import * as nodefs from "node:fs";
44
import { readJSONFile } from "../helpers.js";
55
import { generateSchema } from "../schema.mjs";

packages/app/scripts/utils/parseargs.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @ts-check
2-
import cliui from "cliui";
2+
import { cliui } from "@isaacs/cliui";
33
import * as fs from "node:fs";
44
import * as path from "node:path";
55
import { URL, fileURLToPath } from "node:url";
@@ -14,7 +14,7 @@ import * as util from "node:util";
1414
* @returns {values is Args<O>}
1515
*/
1616
function coerce(values, _options) {
17-
return Boolean(typeof values === "object" && "help" in values);
17+
return typeof values === "object" && Object.hasOwn(values, "help");
1818
}
1919

2020
/**
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { gatherConfig, writeAllFiles } from "../../scripts/configure.mjs";
88
import { findNearest, readJSONFile } from "../../scripts/helpers.js";
99
import type { ConfigureParams } from "../../scripts/types.ts";
1010
import { rm_r } from "../../scripts/utils/filesystem.mjs";
11-
import { templatePath } from "../template.ts";
11+
import { templatePath } from "../template.mts";
1212

1313
const GRADLE_TEST_TASK = "nodeTest";
1414
const MKDIR_OPTIONS = { recursive: true, mode: 0o755 };

packages/app/test/android/test-app-util.test.ts renamed to packages/app/test/android/test-app-util.test.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
reactNativeVersion,
77
removeProject,
88
runGradleWithProject,
9-
} from "./gradle.ts";
9+
} from "./gradle.mts";
1010

1111
describe("test-app-util.gradle", () => {
1212
const defaultTestProject = "TestAppUtilTest";
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)