Skip to content

Commit 9ec6cf2

Browse files
authored
Merge branch 'main' into jake/dynamic-function-import-ts
2 parents ab0944b + 77d7c1c commit 9ec6cf2

File tree

18 files changed

+396
-580
lines changed

18 files changed

+396
-580
lines changed

package-lock.json

Lines changed: 378 additions & 562 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/build/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,15 +110,15 @@
110110
"pkg-dir": "^7.0.0",
111111
"pretty-ms": "^8.0.0",
112112
"ps-list": "^8.0.0",
113-
"read-pkg-up": "^9.0.0",
113+
"read-package-up": "^11.0.0",
114114
"readdirp": "^3.4.0",
115115
"resolve": "^2.0.0-next.5",
116116
"rfdc": "^1.3.0",
117117
"safe-json-stringify": "^1.2.0",
118118
"semver": "^7.3.8",
119119
"string-width": "^5.0.0",
120120
"strip-ansi": "^7.0.0",
121-
"supports-color": "^9.0.0",
121+
"supports-color": "^10.0.0",
122122
"terminal-link": "^3.0.0",
123123
"ts-node": "^10.9.1",
124124
"typescript": "^5.0.0",

packages/build/src/plugins/compatibility.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import _pEvery from 'p-every'
22
import pLocate from 'p-locate'
3-
import { PackageJson } from 'read-pkg-up'
3+
import { PackageJson } from 'read-package-up'
44
import semver from 'semver'
55

66
import { FeatureFlags } from '../core/feature_flags.js'

packages/build/src/plugins/expected_version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { PackageJson } from 'read-pkg-up'
1+
import { PackageJson } from 'read-package-up'
22
import semver from 'semver'
33

44
import { FeatureFlags } from '../core/feature_flags.js'

packages/build/src/plugins/manifest/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { PackageJson } from 'read-pkg-up'
1+
import { PackageJson } from 'read-package-up'
22

33
import { addPluginLoadErrorStatus } from '../../status/load_error.js'
44

packages/build/src/plugins/options.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { dirname } from 'path'
22

3-
import { PackageJson } from 'read-pkg-up'
3+
import { PackageJson } from 'read-package-up'
44
import semver from 'semver'
55

66
import { addErrorInfo } from '../error/info.js'

packages/build/src/plugins/plugin_conditions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { join } from 'path'
22

33
import _pEvery from 'p-every'
4-
import { PackageJson } from 'read-pkg-up'
4+
import { PackageJson } from 'read-package-up'
55
import semver from 'semver'
66

77
import { importJsonFile } from '../utils/json.js'

packages/build/src/utils/json.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { readFile } from 'fs/promises'
22
import { fileURLToPath } from 'url'
33

4-
import type { PackageJson } from 'read-pkg-up'
4+
import type { PackageJson } from 'read-package-up'
55

66
// We know how our package.json looks like, so we can be very specific with the type
77
// and only add the properties we want to use

packages/build/src/utils/package.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { dirname } from 'path'
22

3-
import { Options, PackageJson, readPackageUp } from 'read-pkg-up'
3+
import { Options, PackageJson, readPackageUp } from 'read-package-up'
44

55
type PackageResult = {
66
packageJson: PackageJson

packages/edge-bundler/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"@types/semver": "^7.3.9",
4747
"@types/uuid": "^10.0.0",
4848
"@vitest/coverage-v8": "^0.34.0",
49-
"archiver": "^5.3.1",
49+
"archiver": "^7.0.0",
5050
"chalk": "^5.4.0",
5151
"nock": "^13.2.4",
5252
"tar": "^6.1.11",

0 commit comments

Comments
 (0)