Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update dependency @farmfe/core to v1.4.1 (#1407)
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 <details> <summary>farm-fe/farm (@​farmfe/core)</summary> ### [`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/[email protected]...@farmfe/[email protected]) ##### 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/[email protected]...@farmfe/[email protected]) ##### 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/[email protected]...@farmfe/[email protected]) ##### 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/[email protected]...@farmfe/[email protected]) ##### 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/[email protected]...@farmfe/[email protected]) ##### 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/[email protected]...@farmfe/[email protected]) ##### 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/[email protected]...@farmfe/[email protected]) ##### 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/[email protected]...@farmfe/[email protected]) ##### 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/[email protected]...@farmfe/[email protected]) ##### 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/[email protected]...@farmfe/[email protected]) ##### 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/[email protected]...@farmfe/[email protected]) ##### 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/[email protected]...@farmfe/[email protected]) ##### 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/[email protected]...@farmfe/[email protected]) ##### 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/[email protected]...@farmfe/[email protected]) ##### 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/[email protected]...@farmfe/[email protected]) ##### 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/[email protected]...@farmfe/[email protected]) ##### 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/[email protected]...@farmfe/[email protected]) ##### 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/[email protected]...@farmfe/[email protected]) ##### 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/[email protected]...@farmfe/[email protected]) ##### 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/[email protected]...@farmfe/[email protected]) ##### 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/[email protected]...@farmfe/[email protected]) ##### 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/[email protected]...@farmfe/[email protected]) ##### 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/[email protected]...@farmfe/[email protected]) ##### 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/[email protected]) ##### 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 </details> --- ### 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. --- - [ ] <!-- 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/runtime-env/import-meta-env). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzkuMTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
- Loading branch information