From e23cc8c63559db8b7b3050265d4353eb68295184 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 19 Nov 2024 16:58:51 +0000 Subject: [PATCH] chore(deps): update dependency @farmfe/core to v1.4.1 (#1407) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@farmfe/core](https://redirect.github.com/farm-fe/farm) | [`1.3.12` -> `1.4.1`](https://renovatebot.com/diffs/npm/@farmfe%2fcore/1.3.12/1.4.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@farmfe%2fcore/1.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@farmfe%2fcore/1.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@farmfe%2fcore/1.3.12/1.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@farmfe%2fcore/1.3.12/1.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes
farm-fe/farm (@​farmfe/core) ### [`v1.4.1`](https://redirect.github.com/farm-fe/farm/releases/tag/%40farmfe/core%401.4.1) [Compare Source](https://redirect.github.com/farm-fe/farm/compare/@farmfe/core@1.4.0...@farmfe/core@1.4.1) ##### Patch Changes - Updated dependencies \[[`829d094`](https://redirect.github.com/farm-fe/farm/commit/829d0945)] - [@​farmfe/runtime](https://redirect.github.com/farmfe/runtime)[@​0](https://redirect.github.com/0).12.9 ### [`v1.4.0`](https://redirect.github.com/farm-fe/farm/releases/tag/%40farmfe/core%401.4.0) [Compare Source](https://redirect.github.com/farm-fe/farm/compare/@farmfe/core@1.3.34...@farmfe/core@1.4.0) ##### Minor Changes - [`7d86847`](https://redirect.github.com/farm-fe/farm/commit/7d86847c): Support tree shake `import * as ns from './xxx'`. `./xxx` can be tree-shaken if following rules are met: - `ns` is used as member prop, example: `ns.a` - `ns` is used as member literal computed, example: `ns['a']` For example: ```ts // b.ts export const a = 1; export const b = 2; // a.ts import * as ns from "./b"; console.log(ns.a); console.log(ns["a"]); ``` After tree shaking, the result will be: ```ts // b.ts export const a = 1; // a is preserved and b is removed. // a.ts import * as ns from "./b"; console.log(ns.a); console.log(ns["a"]); ``` But if `ns` is met rules above, then all the fields will be preserved, example: ```ts // b.ts export const a = 1; export const b = 2; // a.ts import * as ns from "./b"; console.log(ns); ``` After tree shaking, the result will be: ```ts // b.ts export const a = 1; // both a and b are preserved export const b = 2; // a.ts import * as ns from "./b"; console.log(ns.a); console.log(ns["a"]); ``` ### [`v1.3.34`](https://redirect.github.com/farm-fe/farm/releases/tag/%40farmfe/core%401.3.34) [Compare Source](https://redirect.github.com/farm-fe/farm/compare/@farmfe/core@1.3.33...@farmfe/core@1.3.34) ##### Patch Changes - [`8853c4a`](https://redirect.github.com/farm-fe/farm/commit/8853c4aa): fix bundle global variable preserve ### [`v1.3.33`](https://redirect.github.com/farm-fe/farm/releases/tag/%40farmfe/core%401.3.33) [Compare Source](https://redirect.github.com/farm-fe/farm/compare/@farmfe/core@1.3.32...@farmfe/core@1.3.33) ##### Patch Changes - [`3b95eef`](https://redirect.github.com/farm-fe/farm/commit/3b95eef4): Fix(runtime): invalid async module cache - Updated dependencies \[[`3b95eef`](https://redirect.github.com/farm-fe/farm/commit/3b95eef4)] - [@​farmfe/runtime](https://redirect.github.com/farmfe/runtime)[@​0](https://redirect.github.com/0).12.8 ### [`v1.3.32`](https://redirect.github.com/farm-fe/farm/releases/tag/%40farmfe/core%401.3.32) [Compare Source](https://redirect.github.com/farm-fe/farm/compare/@farmfe/core@1.3.31...@farmfe/core@1.3.32) ##### Patch Changes - [`3ae860b`](https://redirect.github.com/farm-fe/farm/commit/3ae860bd): fix plugin circle call between Runtime & LazyCompilation, fix runtime & lazyCompilation conflict ### [`v1.3.31`](https://redirect.github.com/farm-fe/farm/releases/tag/%40farmfe/core%401.3.31) [Compare Source](https://redirect.github.com/farm-fe/farm/compare/@farmfe/core@1.3.30...@farmfe/core@1.3.31) ##### Patch Changes - [`c078cd3`](https://redirect.github.com/farm-fe/farm/commit/c078cd35): fix [#​1499](https://redirect.github.com/farm-fe/farm/issues/1499) wrong defaults of side effects of vite plugin adapter hook resolveId - [`c078cd3`](https://redirect.github.com/farm-fe/farm/commit/c078cd35): Fix wrong esm introp helper order when using top level await ### [`v1.3.30`](https://redirect.github.com/farm-fe/farm/releases/tag/%40farmfe/core%401.3.30) [Compare Source](https://redirect.github.com/farm-fe/farm/compare/@farmfe/core@1.3.29...@farmfe/core@1.3.30) ##### Patch Changes - [`3651244`](https://redirect.github.com/farm-fe/farm/commit/36512446): add assets mode for asset path generate - [`2b9b2e3`](https://redirect.github.com/farm-fe/farm/commit/2b9b2e3f): Fix async module detection wrong with cyclic dependencies - [`b3a7caf`](https://redirect.github.com/farm-fe/farm/commit/b3a7caf2): fix css url resolving issue ### [`v1.3.29`](https://redirect.github.com/farm-fe/farm/releases/tag/%40farmfe/core%401.3.29) [Compare Source](https://redirect.github.com/farm-fe/farm/compare/@farmfe/core@1.3.28...@farmfe/core@1.3.29) ##### Patch Changes - [`663dfee`](https://redirect.github.com/farm-fe/farm/commit/663dfeed): Revert change of replacing invalid css ### [`v1.3.28`](https://redirect.github.com/farm-fe/farm/releases/tag/%40farmfe/core%401.3.28) [Compare Source](https://redirect.github.com/farm-fe/farm/compare/@farmfe/core@1.3.27...@farmfe/core@1.3.28) ##### Patch Changes - [`e1f5c69`](https://redirect.github.com/farm-fe/farm/commit/e1f5c696): fix namespace import MemberProp name failed - [`a2a32f5`](https://redirect.github.com/farm-fe/farm/commit/a2a32f51): Fix invalid css syntax [#​1748](https://redirect.github.com/farm-fe/farm/issues/1748) [#​1557](https://redirect.github.com/farm-fe/farm/issues/1557) - [`04a124f`](https://redirect.github.com/farm-fe/farm/commit/04a124fe): Fix css dynamic loading runtime error [#​1551](https://redirect.github.com/farm-fe/farm/issues/1551) - [`7d84234`](https://redirect.github.com/farm-fe/farm/commit/7d84234e): fix resolve env config node env error - Updated dependencies \[[`04a124f`](https://redirect.github.com/farm-fe/farm/commit/04a124fe)] - [@​farmfe/runtime](https://redirect.github.com/farmfe/runtime)[@​0](https://redirect.github.com/0).12.7 ### [`v1.3.27`](https://redirect.github.com/farm-fe/farm/releases/tag/%40farmfe/core%401.3.27) [Compare Source](https://redirect.github.com/farm-fe/farm/compare/@farmfe/core@1.3.26...@farmfe/core@1.3.27) ##### Patch Changes - Bump version - Updated dependencies - [@​farmfe/runtime](https://redirect.github.com/farmfe/runtime)[@​0](https://redirect.github.com/0).12.6 ### [`v1.3.26`](https://redirect.github.com/farm-fe/farm/releases/tag/%40farmfe/core%401.3.26) [Compare Source](https://redirect.github.com/farm-fe/farm/compare/@farmfe/core@1.3.25...@farmfe/core@1.3.26) ##### Patch Changes - [`3b6eb91`](https://redirect.github.com/farm-fe/farm/commit/3b6eb912): fix [#​1755](https://redirect.github.com/farm-fe/farm/issues/1755) and support useAbsolutePath for plugin-react - [`ed676f0`](https://redirect.github.com/farm-fe/farm/commit/ed676f02): Fix [#​1755](https://redirect.github.com/farm-fe/farm/issues/1755) - Updated dependencies \[[`3b6eb91`](https://redirect.github.com/farm-fe/farm/commit/3b6eb912)] - [@​farmfe/runtime-plugin-hmr](https://redirect.github.com/farmfe/runtime-plugin-hmr)[@​3](https://redirect.github.com/3).5.7 ### [`v1.3.25`](https://redirect.github.com/farm-fe/farm/releases/tag/%40farmfe/core%401.3.25) [Compare Source](https://redirect.github.com/farm-fe/farm/compare/@farmfe/core@1.3.24...@farmfe/core@1.3.25) ##### Patch Changes - [`9740859`](https://redirect.github.com/farm-fe/farm/commit/97408595): Fix persistent cache panic when working with lazy compilation ### [`v1.3.24`](https://redirect.github.com/farm-fe/farm/releases/tag/%40farmfe/core%401.3.24) [Compare Source](https://redirect.github.com/farm-fe/farm/compare/@farmfe/core@1.3.23...@farmfe/core@1.3.24) ##### Patch Changes - [`772381b`](https://redirect.github.com/farm-fe/farm/commit/772381b0): Fix concurrent lazy compilation failed - [`732c046`](https://redirect.github.com/farm-fe/farm/commit/732c046d): Ignore non-utf8 error when getting file contents - Updated dependencies \[[`772381b`](https://redirect.github.com/farm-fe/farm/commit/772381b0)] - [@​farmfe/runtime](https://redirect.github.com/farmfe/runtime)[@​0](https://redirect.github.com/0).12.5 ### [`v1.3.23`](https://redirect.github.com/farm-fe/farm/releases/tag/%40farmfe/core%401.3.23) [Compare Source](https://redirect.github.com/farm-fe/farm/compare/@farmfe/core@1.3.22...@farmfe/core@1.3.23) ##### Patch Changes - [`e17551a`](https://redirect.github.com/farm-fe/farm/commit/e17551ad): support css module name coversion - [`4542c3d`](https://redirect.github.com/farm-fe/farm/commit/4542c3d8): Temporarily disable the esbuild attribute in the vite plugin ### [`v1.3.22`](https://redirect.github.com/farm-fe/farm/releases/tag/%40farmfe/core%401.3.22) [Compare Source](https://redirect.github.com/farm-fe/farm/compare/@farmfe/core@1.3.21...@farmfe/core@1.3.22) ##### Patch Changes - [`5f0c02d`](https://redirect.github.com/farm-fe/farm/commit/5f0c02d2): bump runtime version - Updated dependencies \[[`5f0c02d`](https://redirect.github.com/farm-fe/farm/commit/5f0c02d2)] - [@​farmfe/runtime](https://redirect.github.com/farmfe/runtime)[@​0](https://redirect.github.com/0).12.4 ### [`v1.3.21`](https://redirect.github.com/farm-fe/farm/releases/tag/%40farmfe/core%401.3.21) [Compare Source](https://redirect.github.com/farm-fe/farm/compare/@farmfe/core@1.3.20...@farmfe/core@1.3.21) ##### Patch Changes - [`1b1a7c1`](https://redirect.github.com/farm-fe/farm/commit/1b1a7c17): compatible `import default from "module"` ### [`v1.3.20`](https://redirect.github.com/farm-fe/farm/releases/tag/%40farmfe/core%401.3.20) [Compare Source](https://redirect.github.com/farm-fe/farm/compare/@farmfe/core@1.3.19...@farmfe/core@1.3.20) ##### Patch Changes - [`ca00a93`](https://redirect.github.com/farm-fe/farm/commit/ca00a930): fix hmr update no in time ### [`v1.3.19`](https://redirect.github.com/farm-fe/farm/releases/tag/%40farmfe/core%401.3.19) [Compare Source](https://redirect.github.com/farm-fe/farm/compare/@farmfe/core@1.3.18...@farmfe/core@1.3.19) ##### Patch Changes - [`2095f17`](https://redirect.github.com/farm-fe/farm/commit/2095f173): support resolve dedupe ### [`v1.3.18`](https://redirect.github.com/farm-fe/farm/releases/tag/%40farmfe/core%401.3.18) [Compare Source](https://redirect.github.com/farm-fe/farm/compare/@farmfe/core@1.3.17...@farmfe/core@1.3.18) ##### Patch Changes - [`e4e8b92`](https://redirect.github.com/farm-fe/farm/commit/e4e8b92b): fix html runtime inject failed when build multiple page & in output.filename, can choose either name or hash to use ### [`v1.3.17`](https://redirect.github.com/farm-fe/farm/releases/tag/%40farmfe/core%401.3.17) [Compare Source](https://redirect.github.com/farm-fe/farm/compare/@farmfe/core@1.3.16...@farmfe/core@1.3.17) ##### Patch Changes - [`83b89e7`](https://redirect.github.com/farm-fe/farm/commit/83b89e72): Refactor stats implementation ### [`v1.3.16`](https://redirect.github.com/farm-fe/farm/releases/tag/%40farmfe/core%401.3.16) [Compare Source](https://redirect.github.com/farm-fe/farm/compare/@farmfe/core@1.3.15...@farmfe/core@1.3.16) ##### Patch Changes - [`b5d2a4c`](https://redirect.github.com/farm-fe/farm/commit/b5d2a4c3): module system analyze & improve preset_env module path match - [`2e7f4f9`](https://redirect.github.com/farm-fe/farm/commit/2e7f4f90): plugin_static_assets emit resource_map remove query - [`b7fb695`](https://redirect.github.com/farm-fe/farm/commit/b7fb695a): revert preset-env match & add enforce exclude ### [`v1.3.15`](https://redirect.github.com/farm-fe/farm/releases/tag/%40farmfe/core%401.3.15) [Compare Source](https://redirect.github.com/farm-fe/farm/compare/@farmfe/core@1.3.14...@farmfe/core@1.3.15) ##### Patch Changes - Updated dependencies \[[`ae6e0ca`](https://redirect.github.com/farm-fe/farm/commit/ae6e0ca9)] - [@​farmfe/runtime](https://redirect.github.com/farmfe/runtime)[@​0](https://redirect.github.com/0).12.3 ### [`v1.3.14`](https://redirect.github.com/farm-fe/farm/releases/tag/%40farmfe/core%401.3.14) [Compare Source](https://redirect.github.com/farm-fe/farm/compare/@farmfe/core@1.3.13...@farmfe/core@1.3.14) ##### Patch Changes - [`535d0b2`](https://redirect.github.com/farm-fe/farm/commit/535d0b2c): Fix globalThis is not defined in legacy browsers - [`8e67cda`](https://redirect.github.com/farm-fe/farm/commit/8e67cdab): fix: Setting ws in proxy causes an infinite loop - [`73cfd57`](https://redirect.github.com/farm-fe/farm/commit/73cfd570): fix: Add flag in config/schema to disable spa mode ### [`v1.3.13`](https://redirect.github.com/farm-fe/farm/releases/tag/%40farmfe/core%401.3.13) [Compare Source](https://redirect.github.com/farm-fe/farm/compare/v1.3.12...@farmfe/core@1.3.13) ##### Patch Changes - [`ed5c527`](https://redirect.github.com/farm-fe/farm/commit/ed5c5278): fix bundle import namespace name uniq - [`ef19162`](https://redirect.github.com/farm-fe/farm/commit/ef19162f): Optimize dynamic resources map size and fix minify.moduleDecls cyclic dependencies issues - Updated dependencies \[[`ef19162`](https://redirect.github.com/farm-fe/farm/commit/ef19162f)] - [@​farmfe/runtime-plugin-hmr](https://redirect.github.com/farmfe/runtime-plugin-hmr)[@​3](https://redirect.github.com/3).5.6 - [@​farmfe/runtime](https://redirect.github.com/farmfe/runtime)[@​0](https://redirect.github.com/0).12.2
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] 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/runtime-env/import-meta-env). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- packages/unplugin/package.json | 2 +- pnpm-lock.yaml | 142 ++++++++++++--------------------- 2 files changed, 52 insertions(+), 92 deletions(-) diff --git a/packages/unplugin/package.json b/packages/unplugin/package.json index 108342f5f..1a2ffabc0 100644 --- a/packages/unplugin/package.json +++ b/packages/unplugin/package.json @@ -40,7 +40,7 @@ }, "homepage": "https://github.com/runtime-env/import-meta-env/tree/main/packages/unplugin#readme", "devDependencies": { - "@farmfe/core": "1.3.12", + "@farmfe/core": "1.4.1", "@types/node": "22.9.0", "@types/object-hash": "3.0.6", "rollup": "4.27.3", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 03a1c888d..8216a28f4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -240,8 +240,8 @@ importers: version: 1.16.0 devDependencies: '@farmfe/core': - specifier: 1.3.12 - version: 1.3.12 + specifier: 1.4.1 + version: 1.4.1 '@types/node': specifier: 22.9.0 version: 22.9.0 @@ -1343,72 +1343,72 @@ packages: cpu: [x64] os: [win32] - '@farmfe/core-darwin-arm64@1.3.12': - resolution: {integrity: sha512-K80mBxE4o5yTcuuMxDoUfay6N27tFHOy54tE4ybchrj2MLwStzhOhGhKaij2NLjK3UQGR5nYSWc0g55E8NwwQw==} + '@farmfe/core-darwin-arm64@1.4.1': + resolution: {integrity: sha512-l+iMA544VQ+hoBsefNdAxg58h5zf0YGpUZKZeJMeHVEMotiElhNp9IQDDs8E69sPXldaQLBDtePJPOt9Vmma2Q==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] - '@farmfe/core-darwin-x64@1.3.12': - resolution: {integrity: sha512-GwW18zSPLPyUG1aBdoNXRxi5HzfM7VD6GM+wU3vuhSCEzoDbopoO0SCshzClHMeKTXhljwWGBN5GBJcQFb7jyw==} + '@farmfe/core-darwin-x64@1.4.1': + resolution: {integrity: sha512-ouN017R7oqlIKMgmJvmESLd+GhGbqZRQjVQ64R1HmOqwJMI8ASt9ZdLIcM6HxJEOPGRGX/5z9JL88U+Nvii41w==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] - '@farmfe/core-linux-arm64-gnu@1.3.12': - resolution: {integrity: sha512-Fc4FJtsr1ncdph0i1RHAVQwxdTLgCdY4f4LfhoS5LoiQV2DlN6hEhXMtBR/CBc2CIy8cPaFwzSSSr2XH/ZqXiA==} + '@farmfe/core-linux-arm64-gnu@1.4.1': + resolution: {integrity: sha512-3daIRBH/Rd+vrLvnqjtMXMj2tdfdyPEc8Q/Ex4o1Q4jlz/J5KNbf6FoqSLE9LrwtLKG11iJEIBVssVxHTzid+g==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@farmfe/core-linux-arm64-musl@1.3.12': - resolution: {integrity: sha512-1hehU4zI0yN5nuTBAB8J+GWLC+VOgVQdLiG21r8kKKDAzszAaT1PNTWitRAW1eI9NU8p4iyBSHSFk9mnj67kow==} + '@farmfe/core-linux-arm64-musl@1.4.1': + resolution: {integrity: sha512-HbcRhHaBmxhZz5SO4hDseheJ96gUoDTrsDJL13+n77N3gmhDLRQHyfRAmCZWbSicCUguEqe+kp41feMuk31y5Q==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@farmfe/core-linux-x64-gnu@1.3.12': - resolution: {integrity: sha512-QwlRErnzfpLDe9T+1xqDxvs5HLH0CVd0HTFukHW4+RwsoGJ4LNcti0u8VSeNyCYHczVw4sME9ksNh1OgYLi6OQ==} + '@farmfe/core-linux-x64-gnu@1.4.1': + resolution: {integrity: sha512-MIl1JyUNCzjUBuzZFlGiesU3oKCGPzn3jqayFlwM9A98uq+/Ye8aJBHE/bceLu9+DsbIaYsJMnuxSBk9qJ79yw==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@farmfe/core-linux-x64-musl@1.3.12': - resolution: {integrity: sha512-7eBUeH/tYTZUQt5Cohq9ZgR8jVvzhKeg6mpxxESp3eYM7md7bXcuVFbF5tzT1as4MALJsKKTP0Kga/7Hlbddgw==} + '@farmfe/core-linux-x64-musl@1.4.1': + resolution: {integrity: sha512-6lqNENiDaPKNVPh/QNrW0QPychX90ohD9hihLITfwbAxVhKcX7WCU5Mj/N7MelEeu83q6VfXzVCx85pZKTC6pg==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@farmfe/core-win32-arm64-msvc@1.3.12': - resolution: {integrity: sha512-OjdZoGaBMg5tOmDrO9tegQvrVY3QsNBxSq8TZtCmr4gyj+pPzlHwY6e99Wh9UwMPvCL7N9muXPGbLBQpfwkB+g==} + '@farmfe/core-win32-arm64-msvc@1.4.1': + resolution: {integrity: sha512-bzKhxhcEnjypd0rPzeblAvar+JTUw4oRjEQ2KJoti73CrSSF/fBh5aljOr9QqA7yZYUpans9I98f6EqKlRnSAg==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] - '@farmfe/core-win32-ia32-msvc@1.3.12': - resolution: {integrity: sha512-4bOEppvUNgpQ7YZ8lxZKzSuLBUb5WgTTL3bnF75Gi9pKemH70f9HvyF8VzagvtZskhBQIxFan9S4AqO88QUsxg==} + '@farmfe/core-win32-ia32-msvc@1.4.1': + resolution: {integrity: sha512-zrwq5LftzysNuGhTVwgKH8Q9up/fxkUZtuEzqkSBIyRyHBYrpaRz5k3AgWPQxSlQ7Me76oZZoZ5RQYz+sXPA3Q==} engines: {node: '>= 10'} cpu: [ia32] os: [win32] - '@farmfe/core-win32-x64-msvc@1.3.12': - resolution: {integrity: sha512-oWnBjR9aeoHRvuB/sPpsCBurIGlHAvc9+SXDbG2818t9ctZauJOYb5KNfIbmMt+m1AFryJqgz0+PcBaIizu2EA==} + '@farmfe/core-win32-x64-msvc@1.4.1': + resolution: {integrity: sha512-IyoJYsTxJIKzURSlRQilvrpjknTByHSaooz1g2s13BN5/OYoxkMfQL3zMTgkBMWUdsC/pf1dZFCaXkiJZNy/Aw==} engines: {node: '>= 10'} cpu: [x64] os: [win32] - '@farmfe/core@1.3.12': - resolution: {integrity: sha512-TvW5iYTg/WMzwUT3d+03kDrriJQG4FXjnbIsRojsD992hZ4uapNRgrQAFkEBJFyeazCLE/F74b7fqrhfEhXI9w==} + '@farmfe/core@1.4.1': + resolution: {integrity: sha512-5DHsqwrl8i0lax+BGSosrPyeaGDnYIqfWRGp49QB1+dt0NM1gGs03w/elsVHiIVhzPjHBFxjLMym9xXPoz2Row==} engines: {node: '>=16.15.1'} - '@farmfe/runtime-plugin-hmr@3.5.5': - resolution: {integrity: sha512-MaCOS8w40STuSAfA23oEHPdvAGF2zxUbrtQZ0dxhrIdr5dVlrf87pTj7eqju2oTUCwcgceg8wZlJATDyY9K1Aw==} + '@farmfe/runtime-plugin-hmr@3.5.7': + resolution: {integrity: sha512-6vFwVOKcD++fe1ji+MVFV3CMSBF6A/lxpbPqvjVh30KcE0CXWSGcu8XOycgRZAieoRPRsojGRNNVePil6NFv6g==} '@farmfe/runtime-plugin-import-meta@0.2.2': resolution: {integrity: sha512-xrWJOHbmhVJX+a6LtRpv5wvj/uqpPQFZIKeHfT+mqybKRSC9+JxDgOySLzYUbT8beSTtXgcxGXf55EN3Byd0ng==} - '@farmfe/runtime@0.12.1': - resolution: {integrity: sha512-5X9O1PGT0jQ275VDJnmQ0bdO23dgSvOvZupbr0E7W+lq0juAgbaWaqaqtRRqwPBZ3kh+pp6Z5J7ER7rSeTvoaw==} + '@farmfe/runtime@0.12.9': + resolution: {integrity: sha512-VegnAAghjh0Lr5e0DIZOw9k3OMF1/KqrtYH3GZc6OgqqtDASoNnUKcRrIsS/NsPGd4ppWyldxyb/Axxk/p36pA==} '@farmfe/utils@0.0.1': resolution: {integrity: sha512-QLbgNrojcvxfumXA/H329XAXhoCahmeSH3JmaiwwJEGS2QAmWfgAJMegjwlt6OmArGVO4gSbJ7Xbmm1idZZs+g==} @@ -2250,11 +2250,6 @@ packages: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} - browserslist@4.23.2: - resolution: {integrity: sha512-qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - browserslist@4.24.0: resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} @@ -2298,9 +2293,6 @@ packages: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - caniuse-lite@1.0.30001641: - resolution: {integrity: sha512-Phv5thgl67bHYo1TtMY/MurjkHhV4EDaCosezRXgZ8jzA/Ub+wjxAvbGvjoFENStinwi5kCyOYV3mi5tOGykwA==} - caniuse-lite@1.0.30001666: resolution: {integrity: sha512-gD14ICmoV5ZZM1OdzPWmpx+q4GyefaK06zi8hmfHV5xe4/2nOQX3+Dw5o+fSqOws2xVwL9j+anOPFwHzdEdV4g==} @@ -2652,9 +2644,6 @@ packages: ee-first@1.1.1: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - electron-to-chromium@1.4.827: - resolution: {integrity: sha512-VY+J0e4SFcNfQy19MEoMdaIcZLmDCprqvBtkii1WTCTQHpRvf5N8+3kTYCgL/PcntvwQvmMJWTuDPsq+IlhWKQ==} - electron-to-chromium@1.5.31: resolution: {integrity: sha512-QcDoBbQeYt0+3CWcK/rEbuHvwpbT/8SV9T3OSgs6cX1FlcUAkgrkqbg9zLnDrMM/rLamzQwal4LYFCiWk861Tg==} @@ -3670,9 +3659,6 @@ packages: node-int64@0.4.0: resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} - node-releases@2.0.14: - resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} - node-releases@2.0.18: resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==} @@ -4131,9 +4117,6 @@ packages: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} engines: {node: '>=8'} - slashes@3.0.12: - resolution: {integrity: sha512-Q9VME8WyGkc7pJf6QEkj3wE+2CnvZMI+XJhwdTPR8Z/kWQRXi7boAWLDibRPyHRTUTPx5FaU7MsyrjI3yLB4HA==} - source-map-js@1.2.1: resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} engines: {node: '>=0.10.0'} @@ -5945,37 +5928,37 @@ snapshots: '@esbuild/win32-x64@0.24.0': optional: true - '@farmfe/core-darwin-arm64@1.3.12': + '@farmfe/core-darwin-arm64@1.4.1': optional: true - '@farmfe/core-darwin-x64@1.3.12': + '@farmfe/core-darwin-x64@1.4.1': optional: true - '@farmfe/core-linux-arm64-gnu@1.3.12': + '@farmfe/core-linux-arm64-gnu@1.4.1': optional: true - '@farmfe/core-linux-arm64-musl@1.3.12': + '@farmfe/core-linux-arm64-musl@1.4.1': optional: true - '@farmfe/core-linux-x64-gnu@1.3.12': + '@farmfe/core-linux-x64-gnu@1.4.1': optional: true - '@farmfe/core-linux-x64-musl@1.3.12': + '@farmfe/core-linux-x64-musl@1.4.1': optional: true - '@farmfe/core-win32-arm64-msvc@1.3.12': + '@farmfe/core-win32-arm64-msvc@1.4.1': optional: true - '@farmfe/core-win32-ia32-msvc@1.3.12': + '@farmfe/core-win32-ia32-msvc@1.4.1': optional: true - '@farmfe/core-win32-x64-msvc@1.3.12': + '@farmfe/core-win32-x64-msvc@1.4.1': optional: true - '@farmfe/core@1.3.12': + '@farmfe/core@1.4.1': dependencies: - '@farmfe/runtime': 0.12.1 - '@farmfe/runtime-plugin-hmr': 3.5.5 + '@farmfe/runtime': 0.12.9 + '@farmfe/runtime-plugin-hmr': 3.5.7 '@farmfe/runtime-plugin-import-meta': 0.2.2 '@farmfe/utils': 0.1.0 '@koa/cors': 5.0.0 @@ -5997,28 +5980,26 @@ snapshots: koa-static: 5.0.0 lodash.debounce: 4.0.8 loglevel: 1.9.1 - mime-types: 2.1.35 open: 9.1.0 - slashes: 3.0.12 ws: 8.18.0 zod: 3.23.8 zod-validation-error: 1.5.0(zod@3.23.8) optionalDependencies: - '@farmfe/core-darwin-arm64': 1.3.12 - '@farmfe/core-darwin-x64': 1.3.12 - '@farmfe/core-linux-arm64-gnu': 1.3.12 - '@farmfe/core-linux-arm64-musl': 1.3.12 - '@farmfe/core-linux-x64-gnu': 1.3.12 - '@farmfe/core-linux-x64-musl': 1.3.12 - '@farmfe/core-win32-arm64-msvc': 1.3.12 - '@farmfe/core-win32-ia32-msvc': 1.3.12 - '@farmfe/core-win32-x64-msvc': 1.3.12 + '@farmfe/core-darwin-arm64': 1.4.1 + '@farmfe/core-darwin-x64': 1.4.1 + '@farmfe/core-linux-arm64-gnu': 1.4.1 + '@farmfe/core-linux-arm64-musl': 1.4.1 + '@farmfe/core-linux-x64-gnu': 1.4.1 + '@farmfe/core-linux-x64-musl': 1.4.1 + '@farmfe/core-win32-arm64-msvc': 1.4.1 + '@farmfe/core-win32-ia32-msvc': 1.4.1 + '@farmfe/core-win32-x64-msvc': 1.4.1 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@farmfe/runtime-plugin-hmr@3.5.5': + '@farmfe/runtime-plugin-hmr@3.5.7': dependencies: core-js: 3.37.1 @@ -6026,7 +6007,7 @@ snapshots: dependencies: core-js: 3.37.1 - '@farmfe/runtime@0.12.1': + '@farmfe/runtime@0.12.9': dependencies: core-js: 3.37.1 @@ -7008,13 +6989,6 @@ snapshots: dependencies: fill-range: 7.1.1 - browserslist@4.23.2: - dependencies: - caniuse-lite: 1.0.30001641 - electron-to-chromium: 1.4.827 - node-releases: 2.0.14 - update-browserslist-db: 1.1.0(browserslist@4.23.2) - browserslist@4.24.0: dependencies: caniuse-lite: 1.0.30001666 @@ -7053,8 +7027,6 @@ snapshots: camelcase@6.3.0: {} - caniuse-lite@1.0.30001641: {} - caniuse-lite@1.0.30001666: {} ccount@2.0.1: {} @@ -7417,8 +7389,6 @@ snapshots: ee-first@1.1.1: {} - electron-to-chromium@1.4.827: {} - electron-to-chromium@1.5.31: {} emittery@0.13.1: {} @@ -7579,8 +7549,8 @@ snapshots: '@types/object-path': 0.11.4 '@types/semver': 7.5.8 '@types/ua-parser-js': 0.7.39 - browserslist: 4.23.2 - caniuse-lite: 1.0.30001641 + browserslist: 4.24.0 + caniuse-lite: 1.0.30001666 isbot: 3.8.0 object-path: 0.11.8 semver: 7.6.2 @@ -8669,8 +8639,6 @@ snapshots: node-int64@0.4.0: {} - node-releases@2.0.14: {} - node-releases@2.0.18: {} normalize-package-data@2.5.0: @@ -9112,8 +9080,6 @@ snapshots: slash@3.0.0: {} - slashes@3.0.12: {} - source-map-js@1.2.1: {} source-map-support@0.5.13: @@ -9419,12 +9385,6 @@ snapshots: untildify@4.0.0: {} - update-browserslist-db@1.1.0(browserslist@4.23.2): - dependencies: - browserslist: 4.23.2 - escalade: 3.1.2 - picocolors: 1.1.1 - update-browserslist-db@1.1.0(browserslist@4.24.0): dependencies: browserslist: 4.24.0