Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency @farmfe/core to v1.4.1 #1407

Merged
merged 1 commit into from
Nov 19, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 19, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@farmfe/core 1.3.12 -> 1.4.1 age adoption passing confidence

Release Notes

farm-fe/farm (@​farmfe/core)

v1.4.1

Compare Source

Patch Changes

v1.4.0

Compare Source

Minor Changes
  • 7d86847: 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:

    // 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:

    // 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:

    // 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:

    // 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

Compare Source

Patch Changes
  • 8853c4a: fix bundle global variable preserve

v1.3.33

Compare Source

Patch Changes

v1.3.32

Compare Source

Patch Changes
  • 3ae860b: fix plugin circle call between Runtime & LazyCompilation, fix runtime & lazyCompilation conflict

v1.3.31

Compare Source

Patch Changes
  • c078cd3: fix #​1499 wrong defaults of side effects of vite plugin adapter hook resolveId
  • c078cd3: Fix wrong esm introp helper order when using top level await

v1.3.30

Compare Source

Patch Changes
  • 3651244: add assets mode for asset path generate
  • 2b9b2e3: Fix async module detection wrong with cyclic dependencies
  • b3a7caf: fix css url resolving issue

v1.3.29

Compare Source

Patch Changes
  • 663dfee: Revert change of replacing invalid css

v1.3.28

Compare Source

Patch Changes

v1.3.27

Compare Source

Patch Changes

v1.3.26

Compare Source

Patch Changes

v1.3.25

Compare Source

Patch Changes
  • 9740859: Fix persistent cache panic when working with lazy compilation

v1.3.24

Compare Source

Patch Changes

v1.3.23

Compare Source

Patch Changes
  • e17551a: support css module name coversion
  • 4542c3d: Temporarily disable the esbuild attribute in the vite plugin

v1.3.22

Compare Source

Patch Changes

v1.3.21

Compare Source

Patch Changes
  • 1b1a7c1: compatible import default from "module"

v1.3.20

Compare Source

Patch Changes
  • ca00a93: fix hmr update no in time

v1.3.19

Compare Source

Patch Changes

v1.3.18

Compare Source

Patch Changes
  • e4e8b92: fix html runtime inject failed when build multiple page & in output.filename, can choose either name or hash to use

v1.3.17

Compare Source

Patch Changes
  • 83b89e7: Refactor stats implementation

v1.3.16

Compare Source

Patch Changes
  • b5d2a4c: module system analyze & improve preset_env module path match
  • 2e7f4f9: plugin_static_assets emit resource_map remove query
  • b7fb695: revert preset-env match & add enforce exclude

v1.3.15

Compare Source

Patch Changes

v1.3.14

Compare Source

Patch Changes
  • 535d0b2: Fix globalThis is not defined in legacy browsers
  • 8e67cda: fix: Setting ws in proxy causes an infinite loop
  • 73cfd57: fix: Add flag in config/schema to disable spa mode

v1.3.13

Compare Source

Patch Changes

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. View the repository job log.

@renovate renovate bot enabled auto-merge (squash) August 19, 2024 08:42
@renovate renovate bot force-pushed the renovate/farmfe-core-1.x branch 6 times, most recently from 098e461 to c3fb503 Compare August 23, 2024 19:50
@renovate renovate bot changed the title chore(deps): update dependency @farmfe/core to v1.3.13 chore(deps): update dependency @farmfe/core to v1.3.14 Aug 23, 2024
@renovate renovate bot force-pushed the renovate/farmfe-core-1.x branch 5 times, most recently from 4eae2d1 to da38146 Compare August 26, 2024 08:37
@renovate renovate bot changed the title chore(deps): update dependency @farmfe/core to v1.3.14 chore(deps): update dependency @farmfe/core to v1.3.15 Aug 26, 2024
@renovate renovate bot force-pushed the renovate/farmfe-core-1.x branch 6 times, most recently from f4c96da to 5498765 Compare August 29, 2024 14:14
@renovate renovate bot changed the title chore(deps): update dependency @farmfe/core to v1.3.15 chore(deps): update dependency @farmfe/core to v1.3.16 Aug 29, 2024
@renovate renovate bot force-pushed the renovate/farmfe-core-1.x branch 4 times, most recently from 7fb3fbd to c6d7b2c Compare September 1, 2024 07:39
@renovate renovate bot force-pushed the renovate/farmfe-core-1.x branch 3 times, most recently from daf7156 to c46b58f Compare September 1, 2024 22:34
@renovate renovate bot force-pushed the renovate/farmfe-core-1.x branch 12 times, most recently from 30fbac1 to 77d1711 Compare November 16, 2024 03:32
@renovate renovate bot changed the title chore(deps): update dependency @farmfe/core to v1.3.33 chore(deps): update dependency @farmfe/core to v1.3.34 Nov 16, 2024
@renovate renovate bot force-pushed the renovate/farmfe-core-1.x branch 6 times, most recently from ff2f44d to a65d13e Compare November 17, 2024 19:20
@renovate renovate bot changed the title chore(deps): update dependency @farmfe/core to v1.3.34 chore(deps): update dependency @farmfe/core to v1.4.0 Nov 17, 2024
@renovate renovate bot force-pushed the renovate/farmfe-core-1.x branch 5 times, most recently from 9cf054b to c1f72d5 Compare November 19, 2024 12:52
@renovate renovate bot changed the title chore(deps): update dependency @farmfe/core to v1.4.0 chore(deps): update dependency @farmfe/core to v1.4.1 Nov 19, 2024
@renovate renovate bot merged commit e23cc8c into main Nov 19, 2024
54 checks passed
@renovate renovate bot deleted the renovate/farmfe-core-1.x branch November 19, 2024 16:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants