Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
213 changes: 84 additions & 129 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/build/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
"pkg-dir": "^7.0.0",
"pretty-ms": "^8.0.0",
"ps-list": "^8.0.0",
"read-package-up": "^11.0.0",
"read-pkg-up": "^9.1.0",
"readdirp": "^3.4.0",
"resolve": "^2.0.0-next.1",
"rfdc": "^1.3.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/build/src/plugins/compatibility.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import _pEvery from 'p-every'
import pLocate from 'p-locate'
import { PackageJson } from 'read-package-up'
import { PackageJson } from 'read-pkg-up'
import semver from 'semver'

import { FeatureFlags } from '../core/feature_flags.js'
Expand Down
2 changes: 1 addition & 1 deletion packages/build/src/plugins/expected_version.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { PackageJson } from 'read-package-up'
import { PackageJson } from 'read-pkg-up'
import semver from 'semver'

import { FeatureFlags } from '../core/feature_flags.js'
Expand Down
2 changes: 1 addition & 1 deletion packages/build/src/plugins/manifest/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { PackageJson } from 'read-package-up'
import { PackageJson } from 'read-pkg-up'

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

Expand Down
2 changes: 1 addition & 1 deletion packages/build/src/plugins/options.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { dirname } from 'path'

import { PackageJson } from 'read-package-up'
import { PackageJson } from 'read-pkg-up'
import semver from 'semver'

import { addErrorInfo } from '../error/info.js'
Expand Down
2 changes: 1 addition & 1 deletion packages/build/src/plugins/plugin_conditions.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { join } from 'path'

import _pEvery from 'p-every'
import { PackageJson } from 'read-package-up'
import { PackageJson } from 'read-pkg-up'
import semver from 'semver'

import { importJsonFile } from '../utils/json.js'
Expand Down
2 changes: 1 addition & 1 deletion packages/build/src/utils/json.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { readFile } from 'fs/promises'
import { fileURLToPath } from 'url'

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

// We know how our package.json looks like, so we can be very specific with the type
// and only add the properties we want to use
Expand Down
2 changes: 1 addition & 1 deletion packages/build/src/utils/package.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { dirname } from 'path'

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

type PackageResult = {
packageJson: PackageJson
Expand Down
2 changes: 1 addition & 1 deletion packages/framework-info/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"p-filter": "^3.0.0",
"p-locate": "^6.0.0",
"process": "^0.11.10",
"read-package-up": "^11.0.0",
"read-pkg-up": "^9.1.0",
"semver": "^7.3.8"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/framework-info/src/context.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { cwd, version as nodejsVersion } from 'process'

import { locatePath } from 'locate-path'
import { PackageJson, readPackageUp } from 'read-package-up'
import { PackageJson, readPackageUp } from 'read-pkg-up'

interface PackageJsonInfo {
packageJson?: PackageJson
Expand Down
2 changes: 1 addition & 1 deletion packages/framework-info/src/core.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import pFilter from 'p-filter'
import type { PackageJson } from 'read-package-up'
import type { PackageJson } from 'read-pkg-up'

import type { Context, PathExists } from './context.js'
import { usesFramework } from './detect.js'
Expand Down
2 changes: 1 addition & 1 deletion packages/framework-info/src/package.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { includeKeys } from 'filter-obj'
import isPlainObj from 'is-plain-obj'
import type { PackageJson } from 'read-package-up'
import type { PackageJson } from 'read-pkg-up'

export const getPackageJsonContent = function (packageJson: PackageJson | undefined) {
if (packageJson === undefined) {
Expand Down
1 change: 1 addition & 0 deletions packages/opentelemetry-sdk-setup/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"@opentelemetry/core": "~1.24.0",
"@opentelemetry/resources": "~1.24.0",
"@opentelemetry/semantic-conventions": "~1.24.0",
"read-pkg-up": "^9.0.0",
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was not listed as a dependency at all, even though it's used. I don't think that should be the case.

"yargs-parser": "^21.1.1"
},
"devDependencies": {
Expand Down
Loading