Skip to content

Commit f6d9872

Browse files
chore(deps): lock file maintenance npm packages (#436)
This PR contains the following updates: | Package | Type | Update | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---|---|---| | | | lockFileMaintenance | All locks refreshed | | | | | | [@types/node](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | devDependencies | patch | [`22.13.11` -> `22.13.14`](https://renovatebot.com/diffs/npm/@types%2fnode/22.13.11/22.13.14) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/22.13.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/22.13.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/22.13.11/22.13.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/22.13.11/22.13.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [emnapi](https://redirect.github.com/toyobayashi/emnapi) | devDependencies | minor | [`1.3.1` -> `1.4.0`](https://renovatebot.com/diffs/npm/emnapi/1.3.1/1.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/emnapi/1.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/emnapi/1.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/emnapi/1.3.1/1.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/emnapi/1.3.1/1.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [pnpm](https://pnpm.io) ([source](https://redirect.github.com/pnpm/pnpm/tree/HEAD/pnpm)) | packageManager | minor | [`10.6.5` -> `10.7.0`](https://renovatebot.com/diffs/npm/pnpm/10.6.5/10.7.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/pnpm/10.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/pnpm/10.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/pnpm/10.6.5/10.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/pnpm/10.6.5/10.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | 🔧 This Pull Request updates lock files to use the latest dependency versions. --- ### Release Notes <details> <summary>toyobayashi/emnapi (emnapi)</summary> ### [`v1.4.0`](https://redirect.github.com/toyobayashi/emnapi/releases/tag/v1.4.0) [Compare Source](https://redirect.github.com/toyobayashi/emnapi/compare/v1.3.1...v1.4.0) #### What's Changed - allow napi_delete_reference in basic finalizers ([#&#8203;130](https://redirect.github.com/toyobayashi/emnapi/issues/130)) - define NAPI_VERSION 10 ([#&#8203;133](https://redirect.github.com/toyobayashi/emnapi/issues/133)) - perf: reduce the overhead of binding function call (1.5x faster) ([#&#8203;139](https://redirect.github.com/toyobayashi/emnapi/issues/139)) ##### Note If you are using Emscripten >= 3.1.60, please manually specify the link option `-sEXPORTED_RUNTIME_METHODS=['emnapiInit']` ([#&#8203;131](https://redirect.github.com/toyobayashi/emnapi/issues/131)) ([https://github.com/emscripten-core/emscripten/issues/23057](https://redirect.github.com/emscripten-core/emscripten/issues/23057)) **Full Changelog**: toyobayashi/emnapi@v1.3.1...v1.4.0 </details> <details> <summary>pnpm/pnpm (pnpm)</summary> ### [`v10.7.0`](https://redirect.github.com/pnpm/pnpm/blob/HEAD/pnpm/CHANGELOG.md#1070) [Compare Source](https://redirect.github.com/pnpm/pnpm/compare/v10.6.5...v10.7.0) ##### Minor Changes - `pnpm config get` and `list` also show settings set in `pnpm-workspace.yaml` files [#&#8203;9316](https://redirect.github.com/pnpm/pnpm/pull/9316). - It should be possible to use env variables in `pnpm-workspace.yaml` setting names and value. - Add an ability to patch dependencies by version ranges. Exact versions override version ranges, which in turn override name-only patches. Version range `*` is the same as name-only, except that patch application failure will not be ignored. For example: ```yaml patchedDependencies: foo: patches/foo-1.patch foo@^2.0.0: patches/foo-2.patch [email protected]: patches/foo-3.patch ``` The above configuration would apply `patches/foo-3.patch` to `[email protected]`, `patches/foo-2.patch` to all `foo` versions which satisfy `^2.0.0` except `2.1.0`, and `patches/foo-1.patch` to the remaining `foo` versions. > \[!WARNING] > The version ranges should not overlap. If you want to specialize a sub range, make sure to exclude it from the other keys. For example: > > ```yaml > # pnpm-workspace.yaml > patchedDependencies: > # the specialized sub range > '[email protected]': patches/foo.2.2.0-2.8.0.patch > # the more general patch, excluding the sub range above > 'foo@>=2.0.0 <2.2.0 || >2.8.0': 'patches/foo.gte2.patch > ``` > > In most cases, however, it's sufficient to just define an exact version to override the range. - `pnpm config set --location=project` saves the setting to a `pnpm-workspace.yaml` file if no `.npmrc` file is present in the directory [#&#8203;9316](https://redirect.github.com/pnpm/pnpm/pull/9316). - Rename `pnpm.allowNonAppliedPatches` to `pnpm.allowUnusedPatches`. The old name is still supported but it would print a deprecation warning message. - Add `pnpm.ignorePatchFailures` to manage whether pnpm would ignore patch application failures. If `ignorePatchFailures` is not set, pnpm would throw an error when patches with exact versions or version ranges fail to apply, and it would ignore failures from name-only patches. If `ignorePatchFailures` is explicitly set to `false`, pnpm would throw an error when any type of patch fails to apply. If `ignorePatchFailures` is explicitly set to `true`, pnpm would print a warning when any type of patch fails to apply. ##### Patch Changes - Remove dependency paths from audit output to prevent out-of-memory errors [#&#8203;9280](https://redirect.github.com/pnpm/pnpm/issues/9280). </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 8am on monday" in timezone Asia/Shanghai, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/oxc-project/oxc-resolver). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMSIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Boshen <[email protected]>
1 parent b271145 commit f6d9872

File tree

3 files changed

+311
-311
lines changed

3 files changed

+311
-311
lines changed

napi/tests/resolver.test.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -244,22 +244,22 @@ test('resolve pnpm package', () => {
244244
styledComponents.path,
245245
join(
246246
rootDir,
247-
'node_modules/.pnpm/[email protected]_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/styled-components/dist/styled-components.browser.cjs.js',
247+
'node_modules/.pnpm/[email protected]_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/styled-components/dist/styled-components.browser.cjs.js',
248248
),
249249
);
250250

251251
const react = resolver.sync(
252252
join(
253253
rootDir,
254-
'node_modules/.pnpm/[email protected]_react-dom@19.0.0_react@19.0.0__react@19.0.0/node_modules/styled-components',
254+
'node_modules/.pnpm/[email protected]_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/styled-components',
255255
),
256256
'react',
257257
);
258258
assert.deepEqual(
259259
react.path,
260260
join(
261261
rootDir,
262-
'node_modules/.pnpm/react@19.0.0/node_modules/react/index.js',
262+
'node_modules/.pnpm/react@19.1.0/node_modules/react/index.js',
263263
),
264264
);
265265
});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@
2323
"typescript": "^5.8.2",
2424
"vitest": "^3.0.8"
2525
},
26-
"packageManager": "pnpm@10.6.5"
26+
"packageManager": "pnpm@10.7.0"
2727
}

0 commit comments

Comments
 (0)