fralonra / doolhof

Genrates a maze, using Prim's algorithm.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

An in-range update of rollup is breaking the build 🚨

greenkeeper opened this issue Β· comments

The devDependency rollup was updated from 1.7.2 to 1.7.3.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

rollup is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ❌ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Commits

The new version differs by 3 commits.

  • e9e9636 1.7.3
  • 48251d5 Update changelog
  • e53c734 Support exporting live-bindings from other chunks or external dependencies (#2765)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

After pinning to 1.7.2 your tests are still failing. The reported issue might not affect your project. These imprecisions are caused by inconsistent test results.

  • The devDependency rollup was updated from 1.7.4 to 1.8.0.

Your tests are still failing with this version. Compare changes

Release Notes for v1.8.0

2019-04-02

Features

  • Support module as alias for esm and commonjs for cjs to match Node (#2783)

Pull Requests

Commits

The new version differs by 7 commits.

  • 712c56f 1.8.0
  • f083f50 Update changelog
  • dba1438 inline interopDefault in config loading (#2782)
  • 8825cdb Support Node-style format aliases (#2783)
  • f5a6c30 1.7.4
  • 5c6c884 Update changelog
  • b3578ae Make all properties in TreeshakingOptions optional (#2779)

See the full diff

  • The devDependency rollup was updated from 1.8.0 to 1.9.0.

Your tests are still failing with this version. Compare changes

Release Notes for v1.9.0

2019-04-05

Features

  • Add built-in support for bigint (#2789)

Pull Requests

Commits

The new version differs by 7 commits.

  • fadf7bc Fix linting
  • 2500f4c 1.9.0
  • c544083 Update changelog
  • c3d67ca Ship with bigint support built-in (#2789)
  • c6bad2f Update changelog
  • 7837fc5 Test that rollup-plugin-commonjs works with preserveModules (#2792)
  • fee090c Use shared extractAssignedNames from rollup-pluginutils (#2791)

See the full diff

  • The devDependency rollup was updated from 1.9.0 to 1.9.1.

Your tests are still failing with this version. Compare changes

Release Notes for v1.9.1

2019-04-10

Bug Fixes

  • Make sure inline comments in dynamic imports are preserved (#2797)

Pull Requests

Commits

The new version differs by 3 commits.

See the full diff

  • The devDependency rollup was updated from 1.9.1 to 1.9.2.

Your tests are still failing with this version. Compare changes

Release Notes for v1.9.2

2019-04-10

Bug Fixes

  • Allowing replacing output.file with output.dir in the outputOptions hook (#2802)

Pull Requests

Commits

The new version differs by 4 commits.

See the full diff

  • The devDependency rollup was updated from 1.9.2 to 1.9.3.

Your tests are still failing with this version. Compare changes

Release Notes for v1.9.3

2019-04-10

Bug Fixes

  • Simplify return expressions that are evaluated before the surrounding function is bound (#2803)

Pull Requests

  • #2803: Handle out-of-order binding of identifiers to improve tree-shaking (@lukastaegert)
Commits

The new version differs by 3 commits.

  • 516a06d 1.9.3
  • a5526ea Update changelog
  • c3d73ff Handle out-of-order binding of identifiers to improve tree-shaking (#2803)

See the full diff

  • The devDependency rollup was updated from 1.9.3 to 1.10.0.

Your tests are still failing with this version. Compare changes

Release Notes for v1.10.0

2019-04-11

Features

  • Improve generated code to polyfill import.meta.url (#2785)
  • Add plugin hook to configure handling of import.meta (#2785)
  • Improve generated code when accessing URLs of emitted assets (#2796)
  • Add plugin hook to configure the generated code when accessing URLs of emitted assets (#2796)

Bug Fixes

  • No longer resolve assets to their parent URL in some cases (#2796)

Pull Requests

Commits

The new version differs by 4 commits.

  • cc3cf1c 1.10.0
  • 2c3cbaa Update changelog
  • 9ffe6f5 Improve and fix asset emission (#2796)
  • 2ae0811 Refactor handling of import.meta.url and add option to configure behaviour (#2785)

See the full diff

  • The devDependency rollup was updated from 1.10.0 to 1.10.1.

Your tests are still failing with this version. Compare changes

  • The devDependency rollup was updated from 1.10.1 to 1.11.0.

Your tests are still failing with this version. Compare changes

Release Notes for v1.11.0

2019-05-03

Features

  • Add emitChunk plugin context function to emit additional entry chunks that can be referenced from the code (#2809)
  • Allow manualChunks to be a function (#2831)
  • Omit .js extensions in AMD imports to make sure an AMD baseUrl would work (#2809)
  • Automatically use the name of the imported module as a base for dynamically imported chunks (#2809)
  • Add resolveFileUrl plugin hook to replace resolveAssetUrl and handle emitted chunks as well (#2809)
  • Add resolve plugin hook to replace resolveId and isExternal that returns an object (#2829)
  • Allow resolveDynamicImport to return an {id, external} object to also resolve unresolvable dynamic imports to a module (#2829)

Bug Fixes

  • Do not create invalid code if a dynamic import contains nothing but reexports (#2809)
  • Do not fail if modules that define a manual chunk depend on each other (#2809)
  • Do not fail if a module that defines a manual chunk is the dependency of a module defining a different manual chunk (#2809)
  • No longer fail for unnamed duplicate entry points but combine them (#2809)
  • Always return string | null from this.resolveId even if some resolveId hooks return objects (#2829)
  • Show proper warnings when resolveDynamicImport resolves to a non-external module that does not exist (#2829)

Pull Requests

Commits

The new version differs by 12 commits.

  • 61a7947 1.11.0
  • 20222ce Run npm test on appveyor again
  • e5f45d2 Update changelog
  • 5a5ccc8 Update dependencies (#2833)
  • c4d8440 Update changelog
  • d96a846 Manual chunks function (#2831)
  • 856707c Improve id resolution (#2829)
  • 18829da Add hook for dynamic entry chunk emission (#2809)
  • 980903b Update changelog
  • 933b322 Also mention code and map in the generateBundle hook documentation (#2832)
  • 0441723 Update changelog
  • 4b4ace3 Docs: Fix syntax error (#2821)

See the full diff

  • The devDependency rollup was updated from 1.11.0 to 1.11.1.

Your tests are still failing with this version. Compare changes

Release Notes for v1.11.1

2019-05-04

Bug Fixes

  • Fix an issue where rendered exports were reported as "removed" in the bundle information (#2835)

Pull Requests

  • #2835: Fix removedExports to correctly track the exported item (@Swatinem)
Commits

The new version differs by 3 commits.

  • 67a717b 1.11.1
  • 773cecd Update changelog
  • 6238077 Fix removedExports to correctly track the exported item (#2835)

See the full diff

  • The devDependency rollup was updated from 1.11.1 to 1.11.2.

Your tests are still failing with this version. Compare changes

Release Notes for v1.11.2

2019-05-04

Bug Fixes

  • Prevent a crash when handling circular namespace exports (#2836)

Pull Requests

  • #2836: Make sure circular export * from X does not stack overflow (@Swatinem)
Commits

The new version differs by 3 commits.

  • d24dd8e 1.11.2
  • bbeb536 Update changelog
  • 3596f1f Make sure circular export * from X does not stack overflow (#2836)

See the full diff

  • The devDependency rollup was updated from 1.11.2 to 1.11.3.

Your tests are still failing with this version. Compare changes

Release Notes for v1.11.3

2019-05-05

Bug Fixes

  • Quote es3 keywords in namespace objects (#2825)

Pull Requests

  • #2825: Add es3 support for namespace object import (@sormy)
Commits

The new version differs by 3 commits.

See the full diff

  • The devDependency rollup was updated from 1.11.3 to 1.12.0.

Your tests are still failing with this version. Compare changes

Release Notes for v1.12.0

2019-05-15

Features

  • Add treeshake.moduleSideEffects option to allow removing empty imports without a side-effect check (#2844)
  • Extend plugin API to allow marking modules as side-effect-free (#2844)
  • Extend this.resolve plugin context function with an option to skip the resolveId hook of the calling plugin (#2844)
  • Add isEntry flag to this.getModuleInfo plugin context function (#2844)
  • Distribute Rollup as optimized ES2015 code (#2851)

Pull Requests

Commits

The new version differs by 4 commits.

  • fc1fa5b 1.12.0
  • 0cb505b Update changelog
  • 4cad1bd Switch to es2015 output (#2851)
  • 1de599f Add options and hooks to control module side effects (#2844)

See the full diff

  • The devDependency rollup was updated from 1.12.0 to 1.12.1.

Your tests are still failing with this version. Compare changes

Commits

The new version differs by 5 commits.

  • b25b16a 1.12.1
  • 6c88569 Update changelog
  • 33eba89 Allow transformers to return an empty string (#2861)
  • 53947a1 Update changelog
  • 3f27695 Update to latest plugins and extend file name sanitation (#2860)

See the full diff

  • The devDependency rollup was updated from 1.12.1 to 1.12.2.

Your tests are still failing with this version. Compare changes

Release Notes for v1.12.2

2019-05-17

Bug Fixes

  • Do not fail when using clearScreen:false in watchMode (#2858)
  • Properly resolve star reexports when preserving modules (#2860)

Pull Requests

Commits

The new version differs by 7 commits.

  • a4fbc53 1.12.2
  • 968cb2a Update changelog
  • 72f2e81 Cache transitive reexport detection (#2864)
  • 020e87f Update changelog
  • 7aaec61 Declare processConfigsErr before use (#2858)
  • 6a79bc1 keep nested exports with preserveModules (#2854) (#2863)
  • 7e3225f Fix date in changelog

See the full diff

  • The devDependency rollup was updated from 1.12.2 to 1.12.3.

Your tests are still failing with this version. Compare changes

Release Notes for v1.12.3

2019-05-19

Bug Fixes

  • Prevent duplicate imports when exports are reexported as default exports (#2866)

Pull Requests

Commits

The new version differs by 5 commits.

  • 455e994 1.12.3
  • c72da4a Update changelog
  • 9f84980 Properly deduplicate reexported default exports (#2866)
  • 0655489 Update changelog
  • 65b6aef Enable TypeScript strictNullChecks (#2755)

See the full diff

  • The devDependency rollup was updated from 1.12.3 to 1.12.4.

Your tests are still failing with this version. Compare changes

Release Notes for v1.12.4

2019-05-27

Bug Fixes

  • Show correct error stack trace for errors throw in "load" hooks (#2871)

Pull Requests

Commits

The new version differs by 4 commits.

See the full diff

  • The devDependency rollup was updated from 1.12.4 to 1.12.5.

Your tests are still failing with this version. Compare changes

Release Notes for v1.12.5

2019-05-30

Pull Requests

Commits

The new version differs by 3 commits.

See the full diff

  • The devDependency rollup was updated from 1.12.5 to 1.13.0.

Your tests are still failing with this version. Compare changes

Release Notes for v1.13.0

2019-05-31

Features

  • Omit exports and module from SystemJS wrapper if possible (#2880)
  • Try to use the first letters of names when mangling exports (#2885)

Bug Fixes

  • Avoid conflicts with local variables when using format specific globals to render dynamic imports and file URLs (#2880)
  • Do not produce undefined reexports when reexporting from entry points (#2885)

Pull Requests

  • #2880: Deconflict global variables used inside format-specific code (@lukastaegert)
  • #2885: Do not produce undefined reexports when reexporting from entry points and refactor chunk linking (@lukastaegert)
Commits

The new version differs by 5 commits.

  • df11753 Fix linting
  • a630866 1.13.0
  • 52268a9 Update changelog
  • b006d13 Deconflict global variables used inside format-specific code (#2880)
  • 70b0844 Do not produce undefined reexports when reexporting from entry points and refactor chunk linking (#2885)

See the full diff

  • The devDependency rollup was updated from 1.13.0 to 1.13.1.

Your tests are still failing with this version. Compare changes

Release Notes for v1.13.1

2019-06-01

Bug Fixes

  • Avoid conflicts between top-level module, require etc. and CommonJS runtimes (#2889)

Pull Requests

Commits

The new version differs by 5 commits.

  • 6a8d5ef 1.13.1
  • 52032bb Update changelog
  • 53cde75 Protect all module globals for CJS output from being redefined (#2889)
  • 4a70e08 Update changelog
  • dc87d58 Enable full TypeScript strict mode (#2888)

See the full diff

  • The devDependency rollup was updated from 1.13.1 to 1.14.0.

Your tests are still failing with this version. Compare changes

Release Notes for v1.14.0

2019-06-05

Features

  • Deoptimize code inside and called from try-statements for feature detection (#2892)
  • Tree-shake unused call arguments (#2892)

Pull Requests

  • #2892: Implement try-statement-deoptimization for feature detection, tree-shake unused arguments (@lukastaegert)
Commits

The new version differs by 3 commits.

  • 6f9c3b5 1.14.0
  • 8186d22 Update changelog
  • cf398aa Implement try-statement-deoptimization for feature detection, tree-shake unused arguments (#2892)

See the full diff

  • The devDependency rollup was updated from 1.14.0 to 1.14.1.

Your tests are still failing with this version. Compare changes

Release Notes for v1.14.1

2019-06-05

Bug Fixes

  • Fix an issue where try-statements were not included properly when a variable declared inside the statement was accessed outside it (#2898)
  • Fix an issue where await expressions were not included properly (#2899)

Pull Requests

  • #2898: Properly include try-catch-statements even if they have already been included in some way (@lukastaegert)
  • #2899: Fix unintended early return in await inclusion handling (@lukastaegert)
Commits

The new version differs by 4 commits.

  • 7915205 1.14.1
  • 4f7fdda Update changelog
  • af1748d Fix unintended early return in await inclusion handling. (#2899)
  • 71f2fa8 Properly include try-catch-statements even if they have already been (#2898)

See the full diff

  • The devDependency rollup was updated from 1.14.1 to 1.14.2.

Your tests are still failing with this version. Compare changes

Release Notes for v1.14.2

2019-06-05

Bug Fixes

  • Prevent unnecessary inclusion of external namespace import in certain situations (#2900)

Pull Requests

Commits

The new version differs by 3 commits.

See the full diff

  • The devDependency rollup was updated from 1.14.4 to 1.14.5.

Your tests are still failing with this version. Compare changes

Release Notes for v1.14.5

2019-06-09

Bug Fixes

  • Keep external ids unmodified when using the object form of resolveId (#2907)
  • Cache dynamic import resolutions when using Rollup cache (#2908)
  • Keep all necessary parentheses when tree-shaking call arguments (#2911)

Pull Requests

Commits

The new version differs by 14 commits.

  • 139c0b5 1.14.5
  • a931d1f Update changelog
  • 84bc002 Cache dynamic ids if possible (#2908)
  • fd2fe29 Do not resolve relative external ids when using the object form (#2907)
  • a10a4fb Fix treeshaken parameters around parentheses (#2911)
  • 6652a3e Update changelog
  • 98a91ef Update dependencies (#2906)
  • b22a264 1.14.4
  • 4392a3e Update changelog
  • 0a0b67f Make sure external re-exports are included for moduleSideEffects: false (#2905)
  • c68bd95 1.14.3
  • d79aa57 Update changelog
  • 7179390 Use browser relative path algorithm for chunks (#2902)
  • b1df517 Add funding button

See the full diff

  • The devDependency rollup was updated from 1.14.5 to 1.14.6.

Your tests are still failing with this version. Compare changes

Commits

The new version differs by 3 commits.

  • 3ff3db8 1.14.6
  • a624540 Update changelog
  • 9abcb7e Properly include try statements for each pass when deoptimization is deactivated (#2914)

See the full diff

  • The devDependency rollup was updated from 1.14.6 to 1.15.0.

Your tests are still failing with this version. Compare changes

  • The devDependency rollup was updated from 1.15.0 to 1.15.1.

Your tests are still failing with this version. Compare changes

Commits

The new version differs by 3 commits.

  • c9eeef7 1.15.1
  • 33513a9 Update changelog
  • dbe4492 Handle reexports from dynamic entries across chunks (#2928)

See the full diff

  • The devDependency rollup was updated from 1.15.1 to 1.15.2.

Your tests are still failing with this version. Compare changes

Release Notes for v1.15.2

2019-06-13

Bug Fixes

  • Make sure chunks emitted from transform hooks are also emitted for incremental builds in watch mode (#2933)

Pull Requests

Commits

The new version differs by 3 commits.

See the full diff

  • The devDependency rollup was updated from 1.15.2 to 1.15.3.

Your tests are still failing with this version. Compare changes

Release Notes for v1.15.3

2019-06-13

Bug Fixes

  • Always reemit assets and chunks from cached transform hooks (#2936)

Pull Requests

Commits

The new version differs by 3 commits.

  • d98eb95 1.15.3
  • f17910b Update changelog
  • 9d19a18 Fix repeated re-emission of files emitted from a transform hook (#2936)

See the full diff

  • The devDependency rollup was updated from 1.15.3 to 1.15.4.

Your tests are still failing with this version. Compare changes

Release Notes for v1.15.4

2019-06-14

Bug Fixes

  • Improve how asset and chunk URLs are resolved for UMD, IIFE and CJS output (#2937)

Pull Requests

  • #2937: Fix URL resolution to work when the current script contains query parameters (@lukastaegert)
Commits

The new version differs by 3 commits.

  • 74a3be1 1.15.4
  • fb497a5 Update changelog
  • 1934044 Fix URL resolution to work when the current script contains query parameters (#2937)

See the full diff

  • The devDependency rollup was updated from 1.15.4 to 1.15.5.

Your tests are still failing with this version. Compare changes

Release Notes for v1.15.5

2019-06-14

Bug Fixes

  • Do not include any comments for completely tree-shaken files so that renderedLength === 0 is a reliable check (#2940)
  • Do not cause type errors when returning null from resolveId (#2941)

Pull Requests

Commits

The new version differs by 4 commits.

  • 3a5c17a 1.15.5
  • c1ba368 Update changelog
  • b216023 Completely omit files that do not have any included statements (#2940)
  • dd00ff5 Explicitly allow null as return value for various hooks (#2941)

See the full diff

  • The devDependency rollup was updated from 1.15.5 to 1.15.6.

Your tests are still failing with this version. Compare changes

  • The devDependency rollup was updated from 1.15.6 to 1.16.0.

Your tests are still failing with this version. Compare changes

  • The devDependency rollup was updated from 1.16.0 to 1.16.1.

Your tests are still failing with this version. Compare changes

Commits

The new version differs by 3 commits.

See the full diff

  • The devDependency rollup was updated from 1.16.1 to 1.16.2.

Your tests are still failing with this version. Compare changes

Commits

The new version differs by 3 commits.

  • 3ed6c52 1.16.2
  • 48f7f6d Update changelog
  • 9cb67d2 Make sure errors from dynamic imports can be caught (#2958)

See the full diff

  • The devDependency rollup was updated from 1.16.2 to 1.16.3.

Your tests are still failing with this version. Compare changes

Release Notes for v1.16.3

2019-06-29

Bug Fixes

  • Prevent name conflicts with unused function parameters (#2972)

Pull Requests

Commits

The new version differs by 3 commits.

See the full diff

  • The devDependency rollup was updated from 1.16.3 to 1.16.4.

Your tests are still failing with this version. Compare changes

Release Notes for v1.16.4

2019-07-02

Bug Fixes

  • Do not show a TypeScript error when providing a location as number to this.warn and this.error (#2974)
  • Use the correct TypeScript type for Sourcemap.version (#2976)

Pull Requests

Commits

The new version differs by 10 commits.

  • 2896755 1.16.4
  • c2eb6e6 Update changelog
  • b02296a Use async readFile in getRollupDefaultPlugin (#2965)
  • 20b434d Update changelog
  • eb97a3d Fix sourcemap type and update dependencies (#2976)
  • 959df58 Update changelog
  • 5682ae9 Align TS types, docs and implementation for this.warn and this.error (#2975)
  • 21b7ce4 Compensate for netlify URL normalization and fix scrolling again
  • 928d7d6 Update website links
  • 0dd6c15 Remove accidental solo test run

See the full diff

  • The devDependency rollup was updated from 1.16.4 to 1.16.5.

Your tests are still failing with this version. Compare changes

Release Notes for v1.16.5

2019-07-04

Bug Fixes

  • onwarn should still be called when --silent is used (#2982)
  • Properly clean up watchers for files that are deleted between builds (#2982)

Pull Requests

Commits

The new version differs by 4 commits.

  • c4dbb51 1.16.5
  • ee4f0fe Update changelog
  • b1afb6e Do not skip onwarn handler when --silent is used (#2981)
  • ef7486d Make tests run on Node 12, fix watcher cleanup issue (#2982)

See the full diff

  • The devDependency rollup was updated from 1.16.5 to 1.16.6.

Your tests are still failing with this version. Compare changes

Release Notes for v1.16.6

2019-07-04

Bug Fixes

  • Do not pass undefined to resolveDynamicImport for unresolvable template literals (#2984)

Pull Requests

Commits

The new version differs by 3 commits.

  • 198a7b6 1.16.6
  • 365e363 Update changelog
  • 61f021e Always forward AST nodes for unresolvable dynamic imports (#2984)

See the full diff

  • The devDependency rollup was updated from 1.26.0 to 1.26.1.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v1.26.1

2019-10-31

Bug Fixes

  • Prevent an issue where outputs would overwrite files emitted by other outputs (#3201)
  • Do not throw an error if the config file does not have a .js extension (#3204)

Pull Requests

  • #3201: Make the CLI run generate/output in serial (@marijnh)
  • #3204: support all config file extensions (.js,.mjs,...) (@arlac77)
Commits

The new version differs by 138 commits.

  • 38c3171 1.26.1
  • 4071fa8 Update changelog
  • d8becda Make the CLI run generate/output in serial (#3201)
  • 9c85d2a support all config file extensions (.js,.mjs,...) (#3204)
  • 53fb6fe 1.26.0
  • 1fad958 Update changelog
  • 1e1a111 Add support for "export * as name from …" (#3193)
  • 2f7e064 Remove the need to provide an output name for IIFE bundles (#3181)
  • b4c8b43 [feat] Adds support for large assets (> 100 MB) (#3194)
  • b123169 1.25.2
  • 52e5ba5 Update changelog
  • e24bc46 RollupOptions accept output as array (#3184)
  • dae509d Add parentheses to factory function of UMD bundles (#3183)
  • b0d35e1 1.25.1
  • dc8e933 Update changelog

There are 138 commits in total.

See the full diff

  • The devDependency rollup was updated from 1.26.1 to 1.26.2.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v1.26.2

2019-10-31

Bug Fixes

  • Do not create invalid code when using treeshake: false and star re-exports (#3209)

Pull Requests

Commits

The new version differs by 141 commits.

  • 5cbfdee 1.26.2
  • 2ed5bfe Update changelog
  • 066620e Also remove export-all declarations when not tree-shaking (#3209)
  • 38c3171 1.26.1
  • 4071fa8 Update changelog
  • d8becda Make the CLI run generate/output in serial (#3201)
  • 9c85d2a support all config file extensions (.js,.mjs,...) (#3204)
  • 53fb6fe 1.26.0
  • 1fad958 Update changelog
  • 1e1a111 Add support for "export * as name from …" (#3193)
  • 2f7e064 Remove the need to provide an output name for IIFE bundles (#3181)
  • b4c8b43 [feat] Adds support for large assets (> 100 MB) (#3194)
  • b123169 1.25.2
  • 52e5ba5 Update changelog
  • e24bc46 RollupOptions accept output as array (#3184)

There are 141 commits in total.

See the full diff

  • The devDependency rollup was updated from 1.26.2 to 1.26.3.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v1.26.3

2019-11-02

Bug Fixes

  • Work around an incompatibility with rollup-plugin-dts (#3211)

Pull Requests

  • #3211: Do no fail if the source attribute is undefined in an unused named export (@lukastaegert)
Commits

The new version differs by 144 commits.

  • f9b9a7c 1.26.3
  • 7ea824b Update changelog
  • 33b15cd Do no fail if the source attribute is undefined in an unused named export (#3211)
  • 5cbfdee 1.26.2
  • 2ed5bfe Update changelog
  • 066620e Also remove export-all declarations when not tree-shaking (#3209)
  • 38c3171 1.26.1
  • 4071fa8 Update changelog
  • d8becda Make the CLI run generate/output in serial (#3201)
  • 9c85d2a support all config file extensions (.js,.mjs,...) (#3204)
  • 53fb6fe 1.26.0
  • 1fad958 Update changelog
  • 1e1a111 Add support for "export * as name from …" (#3193)
  • 2f7e064 Remove the need to provide an output name for IIFE bundles (#3181)
  • b4c8b43 [feat] Adds support for large assets (> 100 MB) (#3194)

There are 144 commits in total.

See the full diff

  • The devDependency rollup was updated from 1.27.0 to 1.27.1.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v1.27.1

2019-11-18

Bug Fixes

  • Fix an issue where code after a switch-statement with removed cases was erroneously not included (#3241)

Pull Requests

Commits

The new version differs by 163 commits.

  • 0697166 1.27.1
  • d7ad410 Update changelog
  • 690d388 Do not truncate after switch-statement with removed case (#3241)
  • 3885a7f make acornOptions optional in parse() in docs (#3237)
  • 4227977 Update dependencies and fix vulnerability (#3240)
  • 5289fde docs: Fix tutorial example
  • d588810 docs: Fix phase for resolveDynamicImport
  • 4b78645 1.27.0
  • ee326c4 Update changelog
  • 17c14cd Per output plugins (#3218)
  • 8318bb4 1.26.5
  • 9bb2c92 Update changelog
  • af8801b Allow passing input options to output (#3223)
  • 6fed410 1.26.4
  • 79d047f Update changelog

There are 163 commits in total.

See the full diff

  • The devDependency rollup was updated from 1.27.1 to 1.27.2.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v1.27.2

2019-11-18

Bug Fixes

  • Fix an issue where live bindings were not working correctly when using += in SystemJS (#3242)

Pull Requests

  • #3242: Export updated assignments when using shorthand update assignment expressions in SystemJS (@lukastaegert)
Commits

The new version differs by 166 commits.

  • 0366e24 1.27.2
  • 81a2726 Update changelog
  • 6dcc4e0 Export updated assignments when using shorthand update assignment expressions in SystemJS (#3242)
  • 0697166 1.27.1
  • d7ad410 Update changelog
  • 690d388 Do not truncate after switch-statement with removed case (#3241)
  • 3885a7f make acornOptions optional in parse() in docs (#3237)
  • 4227977 Update dependencies and fix vulnerability (#3240)
  • 5289fde docs: Fix tutorial example
  • d588810 docs: Fix phase for resolveDynamicImport
  • 4b78645 1.27.0
  • ee326c4 Update changelog
  • 17c14cd Per output plugins (#3218)
  • 8318bb4 1.26.5
  • 9bb2c92 Update changelog

There are 166 commits in total.

See the full diff

  • The devDependency rollup was updated from 1.27.2 to 1.27.3.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v1.27.3

2019-11-20

Bug Fixes

  • Provide better warning when empty chunks are created in a code-splitting scenario (#3244)

Pull Requests

Commits

The new version differs by 170 commits.

  • 8f4f012 1.27.3
  • 486253f Update changelog
  • 91010bf Clearer empty chunk warning (#3244)
  • edddb12 Update dependencies (#3248)
  • 0366e24 1.27.2
  • 81a2726 Update changelog
  • 6dcc4e0 Export updated assignments when using shorthand update assignment expressions in SystemJS (#3242)
  • 0697166 1.27.1
  • d7ad410 Update changelog
  • 690d388 Do not truncate after switch-statement with removed case (#3241)
  • 3885a7f make acornOptions optional in parse() in docs (#3237)
  • 4227977 Update dependencies and fix vulnerability (#3240)
  • 5289fde docs: Fix tutorial example
  • d588810 docs: Fix phase for resolveDynamicImport
  • 4b78645 1.27.0

There are 170 commits in total.

See the full diff

  • The devDependency rollup was updated from 1.27.3 to 1.27.4.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v1.27.4

2019-11-22

Bug Fixes

  • Aggregate circular dependency warnings in the CLI (#3249)
  • Do not defer non-aggregated handlers in the CLI (#3249)

Pull Requests

Commits

The new version differs by 174 commits.

  • 2f46901 1.27.4
  • ac9008f Update changelog
  • 3befd40 Add installation as a separate header (#3251)
  • 4eccc99 Fix broken Windows CLI tests (#3249)
  • 8f4f012 1.27.3
  • 486253f Update changelog
  • 91010bf Clearer empty chunk warning (#3244)
  • edddb12 Update dependencies (#3248)
  • 0366e24 1.27.2
  • 81a2726 Update changelog
  • 6dcc4e0 Export updated assignments when using shorthand update assignment expressions in SystemJS (#3242)
  • 0697166 1.27.1
  • d7ad410 Update changelog
  • 690d388 Do not truncate after switch-statement with removed case (#3241)
  • 3885a7f make acornOptions optional in parse() in docs (#3237)

There are 174 commits in total.

See the full diff

  • The devDependency rollup was updated from 1.27.4 to 1.27.5.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v1.27.5

2019-11-25

Bug Fixes

  • Make sure namespaces for inlined dynamic imports are treated as variable accesses when deconflicting (#3256)

Pull Requests

Commits

The new version differs by 179 commits.

  • c547361 1.27.5
  • 6718a09 Update changelog
  • 973c046 Avoid name conflicts when inlining dynamic imports nested in functions (#3256)
  • 99a715a Update dependencies (#3257)
  • 54cbc81 Add note about generating source maps to load() and transform() (#3252)
  • 2f46901 1.27.4
  • ac9008f Update changelog
  • 3befd40 Add installation as a separate header (#3251)
  • 4eccc99 Fix broken Windows CLI tests (#3249)
  • 8f4f012 1.27.3
  • 486253f Update changelog
  • 91010bf Clearer empty chunk warning (#3244)
  • edddb12 Update dependencies (#3248)
  • 0366e24 1.27.2
  • 81a2726 Update changelog

There are 179 commits in total.

See the full diff

  • The devDependency rollup was updated from 1.27.5 to 1.27.6.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v1.27.6

2019-11-30

Bug Fixes

  • Use "auto" export mode by default for all modules when preserving modules (#3265)
  • Observe "output.exports" when preserving modules and warn for mixed exports if necessary (#3265)

Pull Requests

Commits

The new version differs by 182 commits.

  • 5a01f05 1.27.6
  • fe0fced Update changelog
  • bdd1e03 Use export mode "auto" by default when preserving modules (#3265)
  • c547361 1.27.5
  • 6718a09 Update changelog
  • 973c046 Avoid name conflicts when inlining dynamic imports nested in functions (#3256)
  • 99a715a Update dependencies (#3257)
  • 54cbc81 Add note about generating source maps to load() and transform() (#3252)
  • 2f46901 1.27.4
  • ac9008f Update changelog
  • 3befd40 Add installation as a separate header (#3251)
  • 4eccc99 Fix broken Windows CLI tests (#3249)
  • 8f4f012 1.27.3
  • 486253f Update changelog
  • 91010bf Clearer empty chunk warning (#3244)

There are 182 commits in total.

See the full diff

  • The devDependency rollup was updated from 1.27.6 to 1.27.7.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v1.27.7

2019-12-01

Bug Fixes

  • Fix a scenario where a reassignments to computed properties were not tracked (#3267)

Pull Requests

Commits

The new version differs by 186 commits.

  • c753a7f 1.27.7
  • 1b8a3de Update changelog
  • d5651be Fix incomplete computed property deoptimization (#3267)
  • d7e3993 Update changelog
  • 5a01f05 1.27.6
  • fe0fced Update changelog
  • bdd1e03 Use export mode "auto" by default when preserving modules (#3265)
  • c547361 1.27.5
  • 6718a09 Update changelog
  • 973c046 Avoid name conflicts when inlining dynamic imports nested in functions (#3256)
  • 99a715a Update dependencies (#3257)
  • 54cbc81 Add note about generating source maps to load() and transform() (#3252)
  • 2f46901 1.27.4
  • ac9008f Update changelog
  • 3befd40 Add installation as a separate header (#3251)

There are 186 commits in total.

See the full diff

  • The devDependency rollup was updated from 1.27.7 to 1.27.8.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v1.27.8

2019-12-02

Bug Fixes

  • Deoptimize objects when a method is called on them to make sure modifications via "this" are observed (#3266)

Pull Requests

  • #3266: Workaround for various object literal mutation bugs (@kzc)
Commits

The new version differs by 189 commits.

  • 195bd62 1.27.8
  • f99054f Update changelog
  • 3e0aa46 workaround for various object literal mutation bugs (#3266)
  • c753a7f 1.27.7
  • 1b8a3de Update changelog
  • d5651be Fix incomplete computed property deoptimization (#3267)
  • d7e3993 Update changelog
  • 5a01f05 1.27.6
  • fe0fced Update changelog
  • bdd1e03 Use export mode "auto" by default when preserving modules (#3265)
  • c547361 1.27.5
  • 6718a09 Update changelog
  • 973c046 Avoid name conflicts when inlining dynamic imports nested in functions (#3256)
  • 99a715a Update dependencies (#3257)
  • 54cbc81 Add note about generating source maps to load() and transform() (#3252)

There are 189 commits in total.

See the full diff

  • The devDependency rollup was updated from 1.27.8 to 1.27.9.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v1.27.9

2019-12-07

Bug Fixes

  • Fix an issue where reexports could be missing when preserving modules (#3273)
  • Allow turning of color output via NO_COLOR or FORCE_COLOR=0 environment variables (#3272)

Pull Requests

  • #3272: Support either NO_COLOR or FORCE_COLOR=0 to turn off color (@kikonen)
  • #3273: Make sure that indirectly reexported modules also become chunk dependencies when preserving modules(@lukastaegert)
Commits

The new version differs by 195 commits.

  • 4d809d1 1.27.9
  • 3c36f7d Update changelog
  • 2b56d7d FIX support either NO_COLOR or FORCE_COLOR=0 to turn off color (#3272)
  • 27201d8 Make sure that indirectly reexported modules also become chunk dependencies when preserving modules (#3273)
  • 6e92e52 Try to fix docs formatting issues
  • f489472 Update changelog
  • 195bd62 1.27.8
  • f99054f Update changelog
  • 3e0aa46 workaround for various object literal mutation bugs (#3266)
  • c753a7f 1.27.7
  • 1b8a3de Update changelog
  • d5651be Fix incomplete computed property deoptimization (#3267)
  • d7e3993 Update changelog
  • 5a01f05 1.27.6
  • fe0fced Update changelog

There are 195 commits in total.

See the full diff

  • The devDependency rollup was updated from 1.27.9 to 1.27.10.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v1.27.10

2019-12-11

Bug Fixes

  • Keep track of function return values in more situations (#3278)

Pull Requests

Commits

The new version differs by 198 commits.

  • a562ec5 1.27.10
  • 6a2b3f8 Update changelog
  • 31747e3 Avoid some unnecessary value tracking deoptimizations (#3278)
  • 4d809d1 1.27.9
  • 3c36f7d Update changelog
  • 2b56d7d FIX support either NO_COLOR or FORCE_COLOR=0 to turn off color (#3272)
  • 27201d8 Make sure that indirectly reexported modules also become chunk dependencies when preserving modules (#3273)
  • 6e92e52 Try to fix docs formatting issues
  • f489472 Update changelog
  • 195bd62 1.27.8
  • f99054f Update changelog
  • 3e0aa46 workaround for various object literal mutation bugs (#3266)
  • c753a7f 1.27.7
  • 1b8a3de Update changelog
  • d5651be Fix incomplete computed property deoptimization (#3267)

There are 198 commits in total.

See the full diff

  • The devDependency rollup was updated from 1.27.10 to 1.27.11.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v1.27.11

2019-12-12

Bug Fixes

  • Resolve a crash due to an infinite loop (#3280)

Pull Requests

Commits

The new version differs by 201 commits.

  • 6d94f0e 1.27.11
  • 55ddc47 Update changelog
  • 9f77b73 Prevent infinite deoptimizations (#3280)
  • a562ec5 1.27.10
  • 6a2b3f8 Update changelog
  • 31747e3 Avoid some unnecessary value tracking deoptimizations (#3278)
  • 4d809d1 1.27.9
  • 3c36f7d Update changelog
  • 2b56d7d FIX support either NO_COLOR or FORCE_COLOR=0 to turn off color (#3272)
  • 27201d8 Make sure that indirectly reexported modules also become chunk dependencies when preserving modules (#3273)
  • 6e92e52 Try to fix docs formatting issues
  • f489472 Update changelog
  • 195bd62 1.27.8
  • f99054f Update changelog
  • 3e0aa46 workaround for various object literal mutation bugs (#3266)

There are 201 commits in total.

See the full diff

  • The devDependency rollup was updated from 1.27.11 to 1.27.12.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v1.27.12

2019-12-13

Bug Fixes

  • Prevent invalid AMD or SystemJS code when accessing import.meta (#3282)

Pull Requests

  • #3282: Always make "module" available for SystemJS and AMD formats if import.meta is accessed directly (@lukastaegert)
Commits

The new version differs by 204 commits.

  • a5502ad 1.27.12
  • 09e6ab4 Update changelog
  • ab48a69 Always make "module" available for SystemJS and AMD formats if import.meta is accessed directly (#3282)
  • 6d94f0e 1.27.11
  • 55ddc47 Update changelog
  • 9f77b73 Prevent infinite deoptimizations (#3280)
  • a562ec5 1.27.10
  • 6a2b3f8 Update changelog
  • 31747e3 Avoid some unnecessary value tracking deoptimizations (#3278)
  • 4d809d1 1.27.9
  • 3c36f7d Update changelog
  • 2b56d7d FIX support either NO_COLOR or FORCE_COLOR=0 to turn off color (#3272)
  • 27201d8 Make sure that indirectly reexported modules also become chunk dependencies when preserving modules (#3273)
  • 6e92e52 Try to fix docs formatting issues
  • f489472 Update changelog

There are 204 commits in total.

See the full diff

  • The devDependency rollup was updated from 1.27.12 to 1.27.13.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v1.27.13

2019-12-14

Bug Fixes

  • Do not truncate environment variable values at the first colon when using the --environment option (#3283)

Pull Requests

Commits

The new version differs by 207 commits.

  • 396f238 1.27.13
  • 216a765 Update changelog
  • 878ac03 Allow environment variables to contain colons (#3283)
  • a5502ad 1.27.12
  • 09e6ab4 Update changelog
  • ab48a69 Always make "module" available for SystemJS and AMD formats if import.meta is accessed directly (#3282)
  • 6d94f0e 1.27.11
  • 55ddc47 Update changelog
  • 9f77b73 Prevent infinite deoptimizations (#3280)
  • a562ec5 1.27.10
  • 6a2b3f8 Update changelog
  • 31747e3 Avoid some unnecessary value tracking deoptimizations (#3278)
  • 4d809d1 1.27.9
  • 3c36f7d Update changelog
  • 2b56d7d FIX support either NO_COLOR or FORCE_COLOR=0 to turn off color (#3272)

There are 207 commits in total.

See the full diff

  • The devDependency rollup was updated from 1.27.13 to 1.27.14.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

  • The devDependency rollup was updated from 1.29.0 to 1.29.1.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v1.29.1

2020-01-21

Bug Fixes

  • Avoid crashes for circular reexports when named exports cannot be found (#3350)

Pull Requests

Commits

The new version differs by 233 commits.

  • 21a1775 1.29.1
  • a49d951 Update changelog
  • e82410d Properly handle circular reexports (#3350)
  • 56cbbdc fix tpyo (#3335)
  • 63644db Remove : from test file names for Windows, update dependencies (#3342)
  • 4ab73c1 1.29.0
  • b0a6b73 Update changelog
  • 3ad2246 Move top-level await out of experimental (#3089)
  • 7769fb9 Adds type definitions for RollupWatcher events. (#3302)
  • b3d610f Handle deoptimizations while a node is being included. (#3327)
  • 35e127c Fix module id conflict on a case insensitive OS (#3317)
  • b99758b 1.28.0
  • d086379 Update changelog
  • 42fe317 Implement stdin input (#3312)
  • 6106af1 [WIP] handle assignments in dead code (#3212)

There are 233 commits in total.

See the full diff

  • The devDependency rollup was updated from 1.29.1 to 1.30.0.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v1.30.0

2020-01-27

Features

  • Do not split chunks when dynamically imported modules import modules that are already loaded by all dynamic importers (#3354)
  • Add hoistTransitiveImports option to disable hoisting imports of static dependencies into entry chunks (#3353)

Bug Fixes

  • Make sure polyfills are always loaded first when each static entry point contains them as first import (#3354)

Pull Requests

Commits

The new version differs by 237 commits.

  • 91aa1a7 1.30.0
  • 372fe0d Update changelog
  • 075933a Add option to avoid hoisting transitive imports (#3353)
  • 7fc24ab Improve chunking algorithm for dynamic imports (#3354)
  • 21a1775 1.29.1
  • a49d951 Update changelog
  • e82410d Properly handle circular reexports (#3350)
  • 56cbbdc fix tpyo (#3335)
  • 63644db Remove : from test file names for Windows, update dependencies (#3342)
  • 4ab73c1 1.29.0
  • b0a6b73 Update changelog
  • 3ad2246 Move top-level await out of experimental (#3089)
  • 7769fb9 Adds type definitions for RollupWatcher events. (#3302)
  • b3d610f Handle deoptimizations while a node is being included. (#3327)
  • 35e127c Fix module id conflict on a case insensitive OS (#3317)

There are 237 commits in total.

See the full diff

  • The devDependency rollup was updated from 1.30.0 to 1.30.1.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v1.30.1

2020-01-27

Bug Fixes

  • Do not mistreat static entgry points as dynamic ones when chunking (#3357)
  • Resolve a crash when chunking circular dynamic imports (#3357)

Pull Requests

Commits

The new version differs by 240 commits.

  • a54155d 1.30.1
  • 80a3b46 Update changelog
  • 8b772ff Resolve issues with circular dynamic entries (#3357)
  • 91aa1a7 1.30.0
  • 372fe0d Update changelog
  • 075933a Add option to avoid hoisting transitive imports (#3353)
  • 7fc24ab Improve chunking algorithm for dynamic imports (#3354)
  • 21a1775 1.29.1
  • a49d951 Update changelog
  • e82410d Properly handle circular reexports (#3350)
  • 56cbbdc fix tpyo (#3335)
  • 63644db Remove : from test file names for Windows, update dependencies (#3342)
  • 4ab73c1 1.29.0
  • b0a6b73 Update changelog
  • 3ad2246 Move top-level await out of experimental (#3089)

There are 240 commits in total.

See the full diff

  • The devDependency rollup was updated from 1.30.1 to 1.31.0.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v1.31.0

2020-01-31

Features

  • Always disable tree-shaking for asm.js functions to maintain semantics (#3362)

Pull Requests

Commits

The new version differs by 243 commits.

  • b08d5a9 1.31.0
  • 4897c25 Update changelog
  • 13d807f Preserve asm.js code (#3362)
  • a54155d 1.30.1
  • 80a3b46 Update changelog
  • 8b772ff Resolve issues with circular dynamic entries (#3357)
  • 91aa1a7 1.30.0
  • 372fe0d Update changelog
  • 075933a Add option to avoid hoisting transitive imports (#3353)
  • 7fc24ab Improve chunking algorithm for dynamic imports (#3354)
  • 21a1775 1.29.1
  • a49d951 Update changelog
  • e82410d Properly handle circular reexports (#3350)
  • 56cbbdc fix tpyo (#3335)
  • 63644db Remove : from test file names for Windows, update dependencies (#3342)

There are 243 commits in total.

See the full diff

  • The devDependency rollup was updated from 1.31.0 to 1.31.1.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v1.31.1

2020-02-14

Bug Fixes

  • Make sure errored files are always re-evaluated in watch mode to avoid an issue in the typescript plugin (#3388)

Pull Requests

Commits

The new version differs by 249 commits.

  • 6f28151 1.31.1
  • 4ed7091 Update changelog
  • 305363a Run transform hooks again in watch mode on files that errored (#3388)
  • f3d3cd8 Update changelog
  • bc52fbb Adjust bug template to mention REPL.it (#3371)
  • 7c0417f docs: correct spelling minifaction to minification (#3366)
  • b08d5a9 1.31.0
  • 4897c25 Update changelog
  • 13d807f Preserve asm.js code (#3362)
  • a54155d 1.30.1
  • 80a3b46 Update changelog
  • 8b772ff Resolve issues with circular dynamic entries (#3357)
  • 91aa1a7 1.30.0
  • 372fe0d Update changelog
  • 075933a Add option to avoid hoisting transitive imports (#3353)

There are 249 commits in total.

See the full diff

  • The devDependency rollup was updated from 1.31.1 to 1.32.0.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v1.32.0

2020-02-28

Features

  • Allow adding plugins on the command line via --plugin <plugin> (#3379)

Pull Requests

Commits

The new version differs by 257 commits.

  • 9d68d8e 1.32.0
  • f3320a0 Update changelog
  • 07223eb introduce CLI --plugin support (#3379)
  • 1b5f505 Update resolveFileUrl docs (#3404)
  • 1d8a09e Update changelog
  • b6251df Bump codecov from 3.6.1 to 3.6.5 (#3392)
  • db576f3 Update changelog
  • 5779af6 fix typo: this.addWatchfile (#3390)
  • 6f28151 1.31.1
  • 4ed7091 Update changelog
  • 305363a Run transform hooks again in watch mode on files that errored (#3388)
  • f3d3cd8 Update changelog
  • bc52fbb Adjust bug template to mention REPL.it (#3371)
  • 7c0417f docs: correct spelling minifaction to minification (#3366)
  • b08d5a9 1.31.0

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 1.32.0 to 1.32.1.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v1.32.1

2020-03-06

Bug Fixes

  • Handle default export detection for AMD and IIFE externals that do not have a prototype (#3420)
  • Handle missing whitespace when the else branch of an if-statement is simplified (#3421)
  • Mention the importing module when reporting errors for missing named exports (#3401)
  • Add code to warning for missing output.name of IIFE bundles (#3372)

Pull Requests

  • #3372: Add warning code for missing output.name of IIFE bundle that has export (@rail44)
  • #3401: Missing exports errors now print the importing module (@timiyay)
  • #3418: Structure lifecycle hooks, add links to build time hooks (@lukastaegert)
  • #3420: Update generated code of getInteropBlock() to work with null prototype objects (@jdalton)
  • #3421: Avoid invalid code when "else" branch is simplified (@lukastaegert)
Commits

The new version differs by 265 commits.

  • f458cbf 1.32.1
  • 8cbf216 Update changelog
  • 97b8c40 warn.code for missing output.name of IIFE bundle that has export (#3372)
  • eeda078 Update generated code of getInteropBlock() to work with null prototype objects (#3420)
  • 85c54ee Avoid invalid code when "else" branch is simplified (#3421)
  • 1e6284f Missing exports errors now print the importing module (#3401)
  • baf382a Fix internal documentation links
  • 6f0f62b Structure lifecycle hooks, add links to build time hooks (#3418)
  • 9d68d8e 1.32.0
  • f3320a0 Update changelog
  • 07223eb introduce CLI --plugin support (#3379)
  • 1b5f505 Update resolveFileUrl docs (#3404)
  • 1d8a09e Update changelog
  • b6251df Bump codecov from 3.6.1 to 3.6.5 (#3392)
  • db576f3 Update changelog

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.4.0 to 2.5.0.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

  • The devDependency rollup was updated from 2.5.0 to 2.6.0.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.6.0

2020-04-10

Features

  • Allow regular expressions to declare external modules (#3482)

Pull Requests

Commits

The new version differs by 347 commits.

  • b463308 2.6.0
  • a7e2bc1 Update changelog
  • e4975a3 feat: allow regex in config.external (#3482)
  • 5d655d7 2.4.0
  • 33aa606 Update changelog
  • 2508884 Rollup class fields support (#3488)
  • 7abfb93 2.3.5
  • 485bb33 Update changelog
  • 302c322 Always use a new inclusion context when including declarations of variables, always inlcude labels when not treeshaking, resolves #3473 (#3492)
  • 027e1e5 2.3.4
  • 4e2af60 Update changelog
  • aecd3e1 Handle re-exports of synthetic named exports (#3319)
  • d18cb37 2.3.3
  • 153cec8 Update changelog
  • 74cec2e feat: support external star exports on namespace objects (#3474)

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.6.0 to 2.6.1.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.6.1

2020-04-12

Bug Fixes

  • Close watch mode when stdin closes in a non-TTY environment (#3493)

Pull Requests

Commits

The new version differs by 351 commits.

  • e440b70 Use chokidar as test watcher
  • 51b0b2e 2.6.1
  • 58b726b Update changelog
  • 57bb54e Ensure --watch mode exits correctly when stdin is closed. (#3493)
  • b463308 2.6.0
  • a7e2bc1 Update changelog
  • e4975a3 feat: allow regex in config.external (#3482)
  • 5d655d7 2.4.0
  • 33aa606 Update changelog
  • 2508884 Rollup class fields support (#3488)
  • 7abfb93 2.3.5
  • 485bb33 Update changelog
  • 302c322 Always use a new inclusion context when including declarations of variables, always inlcude labels when not treeshaking, resolves #3473 (#3492)
  • 027e1e5 2.3.4
  • 4e2af60 Update changelog

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.6.1 to 2.7.0.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.7.0

2020-04-21

Features

  • Add preserveEntrySignatures option to control how exports of entry points are handled (#3498)
  • Add preserveSignature flag to this.emitFile to control exports of emitted chunks (#3498)
  • Add output.minifyInternalExports option to control if internal exports are minified (#3498)

Pull Requests

Commits

The new version differs by 354 commits.

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.7.0 to 2.7.1.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.7.1

2020-04-21

Bug Fixes

  • Use correct path for dynamic imports if output.paths is used (#3508)

Pull Requests

Commits

The new version differs by 357 commits.

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.7.1 to 2.7.2.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.7.2

2020-04-22

Bug Fixes

  • Prevent an infinite loop when creating separate manual chunks with circular dependencies (#3510)
  • Do not fail if "super" is used in the definition of a class field (#3511)
  • Throw if a plugin tries to emit a file with an absolute Windows path (#3509)

Pull Requests

Commits

The new version differs by 362 commits.

  • 97e6fa8 2.7.2
  • eac5b3d Update changelog
  • bd2973a fix: ban emitFile via absolute paths on Windows OS (#3509)
  • 0d352bf Support "super" in class fields (#3511)
  • f65bae1 Do not fail for circular imports between manual chunks (#3510)
  • 925d302 2.7.1
  • a011329 Update changelog
  • 1916b6d Respect output.paths in dynamic imports (#3508)
  • 437934e 2.7.0
  • c953270 Update changelog
  • 9011204 Add option to configure if entry signatures are preserved (#3498)
  • c0c206e Use chokidar as test watcher
  • 51b0b2e 2.6.1
  • 58b726b Update changelog
  • 57bb54e Ensure --watch mode exits correctly when stdin is closed. (#3493)

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.7.2 to 2.7.3.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.7.3

2020-04-27

Bug Fixes

  • Do not access __proto__ when running Rollup (#3518)

Pull Requests

  • #3518: use acorn-class-fields and acorn-static-class-features from npm (@nitsky)
Commits

The new version differs by 365 commits.

  • 8db16bd 2.7.3
  • ea6dbc0 Update changelog
  • 21705fa use acorn-class-fields and acorn-static-class-features from npm (#3518)
  • 97e6fa8 2.7.2
  • eac5b3d Update changelog
  • bd2973a fix: ban emitFile via absolute paths on Windows OS (#3509)
  • 0d352bf Support "super" in class fields (#3511)
  • f65bae1 Do not fail for circular imports between manual chunks (#3510)
  • 925d302 2.7.1
  • a011329 Update changelog
  • 1916b6d Respect output.paths in dynamic imports (#3508)
  • 437934e 2.7.0
  • c953270 Update changelog
  • 9011204 Add option to configure if entry signatures are preserved (#3498)
  • c0c206e Use chokidar as test watcher

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.7.3 to 2.7.4.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.7.4

2020-04-29

Bug Fixes

  • Fix an issue where wrong variable names were used when preserving modules (#3521)

Pull Requests

Commits

The new version differs by 368 commits.

  • 7cf6f98 2.7.4
  • c42d18b Update changelog
  • e4f4d6a Fix and improve default export alias logic (#3521)
  • 8db16bd 2.7.3
  • ea6dbc0 Update changelog
  • 21705fa use acorn-class-fields and acorn-static-class-features from npm (#3518)
  • 97e6fa8 2.7.2
  • eac5b3d Update changelog
  • bd2973a fix: ban emitFile via absolute paths on Windows OS (#3509)
  • 0d352bf Support "super" in class fields (#3511)
  • f65bae1 Do not fail for circular imports between manual chunks (#3510)
  • 925d302 2.7.1
  • a011329 Update changelog
  • 1916b6d Respect output.paths in dynamic imports (#3508)
  • 437934e 2.7.0

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.7.4 to 2.7.5.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.7.5

2020-04-29

Bug Fixes

  • Prevent infinite loop when default values of function parameters in a default export contain a slash (#3522)

Pull Requests

  • #3522: Avoid infinite loop when finding position for id insertion in default export (@lukastaegert)
Commits

The new version differs by 371 commits.

  • a2b4883 2.7.5
  • 8ec40b1 Update changelog
  • f9a6042 Do not check over parameters when finding possible star in default exported function (#3522)
  • 7cf6f98 2.7.4
  • c42d18b Update changelog
  • e4f4d6a Fix and improve default export alias logic (#3521)
  • 8db16bd 2.7.3
  • ea6dbc0 Update changelog
  • 21705fa use acorn-class-fields and acorn-static-class-features from npm (#3518)
  • 97e6fa8 2.7.2
  • eac5b3d Update changelog
  • bd2973a fix: ban emitFile via absolute paths on Windows OS (#3509)
  • 0d352bf Support "super" in class fields (#3511)
  • f65bae1 Do not fail for circular imports between manual chunks (#3510)
  • 925d302 2.7.1

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.7.5 to 2.7.6.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.7.6

2020-04-30

Bug Fixes

  • Fix a type issue when a default export references a global variable (#3526)

Pull Requests

Commits

The new version differs by 374 commits.

  • 468010b 2.7.6
  • 909640a Update changelog
  • 1b588b6 Handles default exporting global variables (#3526)
  • a2b4883 2.7.5
  • 8ec40b1 Update changelog
  • f9a6042 Do not check over parameters when finding possible star in default exported function (#3522)
  • 7cf6f98 2.7.4
  • c42d18b Update changelog
  • e4f4d6a Fix and improve default export alias logic (#3521)
  • 8db16bd 2.7.3
  • ea6dbc0 Update changelog
  • 21705fa use acorn-class-fields and acorn-static-class-features from npm (#3518)
  • 97e6fa8 2.7.2
  • eac5b3d Update changelog
  • bd2973a fix: ban emitFile via absolute paths on Windows OS (#3509)

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.7.6 to 2.8.0.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.8.0

2020-05-06

Features

  • When a dynamically imported chunk contains more exports than the imported module namespace, do not create a facade chunk but an inline namespace (#3535)

Bug Fixes

  • Do not execute dynamically imported code before synchronous code in the importing module when generating CommonJS (#3535)

Pull Requests

Commits

The new version differs by 377 commits.

  • 35b0f78 2.8.0
  • e21f248 Update changelog
  • f514c76 Avoid dynamic facade chunks (#3535)
  • 468010b 2.7.6
  • 909640a Update changelog
  • 1b588b6 Handles default exporting global variables (#3526)
  • a2b4883 2.7.5
  • 8ec40b1 Update changelog
  • f9a6042 Do not check over parameters when finding possible star in default exported function (#3522)
  • 7cf6f98 2.7.4
  • c42d18b Update changelog
  • e4f4d6a Fix and improve default export alias logic (#3521)
  • 8db16bd 2.7.3
  • ea6dbc0 Update changelog
  • 21705fa use acorn-class-fields and acorn-static-class-features from npm (#3518)

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.8.0 to 2.8.1.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.8.1

2020-05-07

Bug Fixes

  • Allow using plugins on CLI that are exported as exports.default (#3529)
  • Do not fail side-effect detection in nested callbacks of builtins (#3539)

Pull Requests

  • #3529: Use default named export with plugins (@NotWoods)
  • #3539: Track call side-effects both by entity and CallExpression to avoid untracked side-effects in nested calls (@lukastaegert)
Commits

The new version differs by 381 commits.

  • c445d60 2.8.1
  • 1094f82 Update changelog
  • e5cf74c Use default named export with plugins (#3529)
  • a2b961d Track call side-effects both by entity and CallExpression to avoid untracked side-effects in nested calls (#3539)
  • 35b0f78 2.8.0
  • e21f248 Update changelog
  • f514c76 Avoid dynamic facade chunks (#3535)
  • 468010b 2.7.6
  • 909640a Update changelog
  • 1b588b6 Handles default exporting global variables (#3526)
  • a2b4883 2.7.5
  • 8ec40b1 Update changelog
  • f9a6042 Do not check over parameters when finding possible star in default exported function (#3522)
  • 7cf6f98 2.7.4
  • c42d18b Update changelog

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.8.1 to 2.8.2.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.8.2

2020-05-07

Bug Fixes

  • Avoid invalid code when simplifying the body of a shorthand arrow function expression (#3540)

Pull Requests

  • #3540: Wrap object expressions in parentheses if they become children of an arrow function expression (@lukastaegert)
Commits

The new version differs by 384 commits.

  • 0698b6e 2.8.2
  • a7a6db4 Update changelog
  • 1ca18a3 Wrap object expressions in parentheses if they become children of an arrow function expression (#3540)
  • c445d60 2.8.1
  • 1094f82 Update changelog
  • e5cf74c Use default named export with plugins (#3529)
  • a2b961d Track call side-effects both by entity and CallExpression to avoid untracked side-effects in nested calls (#3539)
  • 35b0f78 2.8.0
  • e21f248 Update changelog
  • f514c76 Avoid dynamic facade chunks (#3535)
  • 468010b 2.7.6
  • 909640a Update changelog
  • 1b588b6 Handles default exporting global variables (#3526)
  • a2b4883 2.7.5
  • 8ec40b1 Update changelog

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.8.2 to 2.9.0.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.9.0

2020-05-10

Features

  • Add ids of static and dynamic imports to this.getModuleInfo (#3542)
  • Provide getModuleInfo and getModuleIds to manualChunks functions (#3542)
  • Add nullish coalescing support (#3548)
  • Make the rebuild delay in watch mode configurable and set the default to 0 for snappy rebuilds (#3502)
  • Add this.getModuleIds to the plugin context as future replacement for this.moduleIds (#3542)

Pull Requests

Commits

The new version differs by 391 commits.

  • 67ebd53 2.9.0
  • 6d6a180 Fix watch tests on Mac
  • c6c2532 Update changelog
  • 7e5c0d2 Configurable Build Delay (Currently Hardcoded at 200ms) (#3502)
  • f63e54d Extend manualChunks API (#3542)
  • e6d6876 Support nullish coalescing with tree-shaking (#3548)
  • 6919037 Update changelog
  • 0698b6e 2.8.2
  • a7a6db4 Update changelog
  • 1ca18a3 Wrap object expressions in parentheses if they become children of an arrow function expression (#3540)
  • c445d60 2.8.1
  • 1094f82 Update changelog
  • e5cf74c Use default named export with plugins (#3529)
  • a2b961d Track call side-effects both by entity and CallExpression to avoid untracked side-effects in nested calls (#3539)
  • 35b0f78 2.8.0

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.9.0 to 2.9.1.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.9.1

2020-05-11

Bug Fixes

  • Do not create unintended live-bindings or invalid reexports when reexporting global variables (#3550)

Pull Requests

Commits

The new version differs by 393 commits.

  • 1436473 2.9.1
  • 41fc2d7 Track updates of globals that are exported as default (#3550)
  • 67ebd53 2.9.0
  • 6d6a180 Fix watch tests on Mac
  • c6c2532 Update changelog
  • 7e5c0d2 Configurable Build Delay (Currently Hardcoded at 200ms) (#3502)
  • f63e54d Extend manualChunks API (#3542)
  • e6d6876 Support nullish coalescing with tree-shaking (#3548)
  • 6919037 Update changelog
  • 0698b6e 2.8.2
  • a7a6db4 Update changelog
  • 1ca18a3 Wrap object expressions in parentheses if they become children of an arrow function expression (#3540)
  • c445d60 2.8.1
  • 1094f82 Update changelog
  • e5cf74c Use default named export with plugins (#3529)

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.9.1 to 2.10.0.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.10.0

2020-05-13

Features

  • Avoid unnecessary empty imports from a facade chunk to the original chunk (#3552)
  • Pin facade creation order so that if several user-defined chunks reference the same module, the first always becomes the "actual" chunk while the later ones become facades (#3552)

Bug Fixes

  • Do not omit reexports from secondary chunks when creating facades for entry points without hoisting transitive dependencies (#3552)

Pull Requests

Commits

The new version differs by 397 commits.

  • eb20e62 2.10.0
  • 95591b7 Update changelog
  • 07e0b20 Avoid unnecessary facade dependency inlining (#3552)
  • 3cbcc8d Improve manualChunks docs (#3553)
  • 1436473 2.9.1
  • 41fc2d7 Track updates of globals that are exported as default (#3550)
  • 67ebd53 2.9.0
  • 6d6a180 Fix watch tests on Mac
  • c6c2532 Update changelog
  • 7e5c0d2 Configurable Build Delay (Currently Hardcoded at 200ms) (#3502)
  • f63e54d Extend manualChunks API (#3542)
  • e6d6876 Support nullish coalescing with tree-shaking (#3548)
  • 6919037 Update changelog
  • 0698b6e 2.8.2
  • a7a6db4 Update changelog

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.10.0 to 2.10.1.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.10.1

2020-05-15

Bug Fixes

  • Do not throw when "undefined" is used as a default export (#3558)

Pull Requests

Commits

The new version differs by 400 commits.

  • e5872b0 2.10.1
  • baea8aa Update changelog
  • 336eca8 Properly handles default exporting undefined (#3558)
  • eb20e62 2.10.0
  • 95591b7 Update changelog
  • 07e0b20 Avoid unnecessary facade dependency inlining (#3552)
  • 3cbcc8d Improve manualChunks docs (#3553)
  • 1436473 2.9.1
  • 41fc2d7 Track updates of globals that are exported as default (#3550)
  • 67ebd53 2.9.0
  • 6d6a180 Fix watch tests on Mac
  • c6c2532 Update changelog
  • 7e5c0d2 Configurable Build Delay (Currently Hardcoded at 200ms) (#3502)
  • f63e54d Extend manualChunks API (#3542)
  • e6d6876 Support nullish coalescing with tree-shaking (#3548)

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.10.1 to 2.10.2.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.10.2

2020-05-15

Bug Fixes

  • Properly include calls to mutating array methods in certain scenarios (#3559)

Pull Requests

  • #3559: Make sure UnknownFooExpressions are included when referenced as return values in a MultiExpression (@lukastaegert)
Commits

The new version differs by 403 commits.

  • 21b09a2 2.10.2
  • 97142d0 Update changelog
  • 4ae97b5 Make sure UnknownXYExpressions are included when referenced as return values in a MultiExpression (#3559)
  • e5872b0 2.10.1
  • baea8aa Update changelog
  • 336eca8 Properly handles default exporting undefined (#3558)
  • eb20e62 2.10.0
  • 95591b7 Update changelog
  • 07e0b20 Avoid unnecessary facade dependency inlining (#3552)
  • 3cbcc8d Improve manualChunks docs (#3553)
  • 1436473 2.9.1
  • 41fc2d7 Track updates of globals that are exported as default (#3550)
  • 67ebd53 2.9.0
  • 6d6a180 Fix watch tests on Mac
  • c6c2532 Update changelog

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.10.2 to 2.10.3.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.10.3

2020-05-18

Bug Fixes

  • Validate return value of sourcemapPathTransform option (#3561)

Pull Requests

  • #3561: Throw error if sourcemapPathTransform-option does not return a string (@Simonwep)
Commits

The new version differs by 406 commits.

  • d91fa24 2.10.3
  • 425787f Update changelog
  • 9b60cb1 Throw error if sourcemapPathTransform-option does not return a string (#3484) (#3561)
  • 21b09a2 2.10.2
  • 97142d0 Update changelog
  • 4ae97b5 Make sure UnknownXYExpressions are included when referenced as return values in a MultiExpression (#3559)
  • e5872b0 2.10.1
  • baea8aa Update changelog
  • 336eca8 Properly handles default exporting undefined (#3558)
  • eb20e62 2.10.0
  • 95591b7 Update changelog
  • 07e0b20 Avoid unnecessary facade dependency inlining (#3552)
  • 3cbcc8d Improve manualChunks docs (#3553)
  • 1436473 2.9.1
  • 41fc2d7 Track updates of globals that are exported as default (#3550)

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.10.3 to 2.10.4.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Commits

The new version differs by 409 commits.

  • 7e1acb3 2.10.4
  • 7d1ed9d Update changelog
  • eacaa13 Make sure unused classes with fields are tree-shaken if possible (#3569)
  • d91fa24 2.10.3
  • 425787f Update changelog
  • 9b60cb1 Throw error if sourcemapPathTransform-option does not return a string (#3484) (#3561)
  • 21b09a2 2.10.2
  • 97142d0 Update changelog
  • 4ae97b5 Make sure UnknownXYExpressions are included when referenced as return values in a MultiExpression (#3559)
  • e5872b0 2.10.1
  • baea8aa Update changelog
  • 336eca8 Properly handles default exporting undefined (#3558)
  • eb20e62 2.10.0
  • 95591b7 Update changelog
  • 07e0b20 Avoid unnecessary facade dependency inlining (#3552)

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.10.4 to 2.10.5.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.10.5

2020-05-19

Bug Fixes

  • Do not remove side-effects that may influence an included default export declaration when side-effects are disabled (#3572)

Pull Requests

  • #3572: Observe side-effects in files containing a default export declaration that reexports a variable (@lukastaegert)
Commits

The new version differs by 413 commits.

  • 2835ee4 2.10.5
  • bcc7744 Update changelog
  • 6468e03 Observe side-effects in files containing a default export declaration that reexports a variable (#3572)
  • 6515151 update doc to point folks to @rollup/plugin-babel (#3567)
  • 7e1acb3 2.10.4
  • 7d1ed9d Update changelog
  • eacaa13 Make sure unused classes with fields are tree-shaken if possible (#3569)
  • d91fa24 2.10.3
  • 425787f Update changelog
  • 9b60cb1 Throw error if sourcemapPathTransform-option does not return a string (#3484) (#3561)
  • 21b09a2 2.10.2
  • 97142d0 Update changelog
  • 4ae97b5 Make sure UnknownXYExpressions are included when referenced as return values in a MultiExpression (#3559)
  • e5872b0 2.10.1
  • baea8aa Update changelog

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.10.5 to 2.10.6.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.10.6

2020-05-22

Bug Fixes

  • Fix some issues around class fields (#3580)
  • Prevent a maximum call stack error when a called entity references itself in its declaration (#3581)

Pull Requests

Commits

The new version differs by 417 commits.

  • e3ab391 2.10.6
  • 7205512 Update changelog
  • f5cfe1a Do not fail when including call arguments of recursively defined variables (#3581)
  • b347cc9 update acorn class features (#3580)
  • 2835ee4 2.10.5
  • bcc7744 Update changelog
  • 6468e03 Observe side-effects in files containing a default export declaration that reexports a variable (#3572)
  • 6515151 update doc to point folks to @rollup/plugin-babel (#3567)
  • 7e1acb3 2.10.4
  • 7d1ed9d Update changelog
  • eacaa13 Make sure unused classes with fields are tree-shaken if possible (#3569)
  • d91fa24 2.10.3
  • 425787f Update changelog
  • 9b60cb1 Throw error if sourcemapPathTransform-option does not return a string (#3484) (#3561)
  • 21b09a2 2.10.2

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.10.6 to 2.10.7.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.10.7

2020-05-22

Bug Fixes

  • Handle modules re-exporting namespaces without further own code (#3576)

Pull Requests

Commits

The new version differs by 420 commits.

  • c7b4733 2.10.7
  • a761e3f Update changelog
  • 186f31d fix "cannot read exports of undefined" error (#3576)
  • e3ab391 2.10.6
  • 7205512 Update changelog
  • f5cfe1a Do not fail when including call arguments of recursively defined variables (#3581)
  • b347cc9 update acorn class features (#3580)
  • 2835ee4 2.10.5
  • bcc7744 Update changelog
  • 6468e03 Observe side-effects in files containing a default export declaration that reexports a variable (#3572)
  • 6515151 update doc to point folks to @rollup/plugin-babel (#3567)
  • 7e1acb3 2.10.4
  • 7d1ed9d Update changelog
  • eacaa13 Make sure unused classes with fields are tree-shaken if possible (#3569)
  • d91fa24 2.10.3

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.10.7 to 2.10.8.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.10.8

2020-05-23

Bug Fixes

  • Fix issues when synthetic named exports are reexported as default exports (#3586)

Pull Requests

Commits

The new version differs by 426 commits.

  • 36a4527 2.10.8
  • d774487 Update changelog
  • c8eeb41 Handle default reexports of synthetic named exports over several stages (#3586)
  • bd97e40 Update changelog
  • 40b879b Target Node.js v14 instead of v13 (#3585)
  • 7f74198 Clarify documentation for output.paths (#3584)
  • c7b4733 2.10.7
  • a761e3f Update changelog
  • 186f31d fix "cannot read exports of undefined" error (#3576)
  • e3ab391 2.10.6
  • 7205512 Update changelog
  • f5cfe1a Do not fail when including call arguments of recursively defined variables (#3581)
  • b347cc9 update acorn class features (#3580)
  • 2835ee4 2.10.5
  • bcc7744 Update changelog

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.10.8 to 2.10.9.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.10.9

2020-05-24

Bug Fixes

  • Prevent invalid exports when facades are created (#3590)

Pull Requests

  • #3590: Prevent unneeded exports when entry facades are created and ensure all exported variables in facades are imported (@lukastaegert)
Commits

The new version differs by 429 commits.

  • 462bff7 2.10.9
  • dacbba8 Update changelog
  • c126c94 Prevent unneeded exports when entry facades are created and ensure all exported variables in facades are imported (#3590)
  • 36a4527 2.10.8
  • d774487 Update changelog
  • c8eeb41 Handle default reexports of synthetic named exports over several stages (#3586)
  • bd97e40 Update changelog
  • 40b879b Target Node.js v14 instead of v13 (#3585)
  • 7f74198 Clarify documentation for output.paths (#3584)
  • c7b4733 2.10.7
  • a761e3f Update changelog
  • 186f31d fix "cannot read exports of undefined" error (#3576)
  • e3ab391 2.10.6
  • 7205512 Update changelog
  • f5cfe1a Do not fail when including call arguments of recursively defined variables (#3581)

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.10.9 to 2.11.0.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.11.0

2020-05-27

Features

  • Add basic support for optional chaining (#3582)
  • Provide a normalized set of options with proper default values to buildStart and renderStart (#3597)
  • Do not count adding properties to the prototype of an unused class as a side-effect (#3598)
  • Support providing null for empty setters in SystemJS via option (#3592)

Bug Fixes

  • Do not fail when using a /*#__PURE__*/ annotation inside a class field (#3599)
  • Allow using --watch and --treeshake together with sub-options such as --watch.clearScreen on the command line (#3597)

Pull Requests

Commits

The new version differs by 437 commits.

  • ca0854e 2.11.0
  • 0634ee9 Update changelog
  • ad6c24a Support optional chaining via acorn fork (#3582)
  • 7285995 System format optional setters (#3592)
  • eb6ce17 Treeshake prototype modifications in classes (#3598)
  • e2a85a1 Retain pure annotations in class fields (#3599)
  • 9bff788 Provide normalized options (#3597)
  • 00e197f Convert tab to spaces (#3601)
  • 462bff7 2.10.9
  • dacbba8 Update changelog
  • c126c94 Prevent unneeded exports when entry facades are created and ensure all exported variables in facades are imported (#3590)
  • 36a4527 2.10.8
  • d774487 Update changelog
  • c8eeb41 Handle default reexports of synthetic named exports over several stages (#3586)
  • bd97e40 Update changelog

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.11.0 to 2.11.1.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Commits

The new version differs by 440 commits.

  • 085cfc9 2.11.1
  • 2591660 Update changelog
  • 41778fe Handle side-effects next to side-effect-free default exports in case the default export is reexported (#3602)
  • ca0854e 2.11.0
  • 0634ee9 Update changelog
  • ad6c24a Support optional chaining via acorn fork (#3582)
  • 7285995 System format optional setters (#3592)
  • eb6ce17 Treeshake prototype modifications in classes (#3598)
  • e2a85a1 Retain pure annotations in class fields (#3599)
  • 9bff788 Provide normalized options (#3597)
  • 00e197f Convert tab to spaces (#3601)
  • 462bff7 2.10.9
  • dacbba8 Update changelog
  • c126c94 Prevent unneeded exports when entry facades are created and ensure all exported variables in facades are imported (#3590)
  • 36a4527 2.10.8

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.11.1 to 2.11.2.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.11.2

2020-05-28

Bug Fixes

  • Include side-effects in the second argument of Array.from (#3604)

Pull Requests

  • #3604: Mark Array.from as side-effectful, use two-argument Array.from when mapping Sets (@lukastaegert)
Commits

The new version differs by 443 commits.

  • 2040f82 2.11.2
  • 2b7d5d0 Update changelog
  • 21b015e Make Array.from as side-effectful, use two-argument Array.from when mapping Sets (#3604)
  • 085cfc9 2.11.1
  • 2591660 Update changelog
  • 41778fe Handle side-effects next to side-effect-free default exports in case the default export is reexported (#3602)
  • ca0854e 2.11.0
  • 0634ee9 Update changelog
  • ad6c24a Support optional chaining via acorn fork (#3582)
  • 7285995 System format optional setters (#3592)
  • eb6ce17 Treeshake prototype modifications in classes (#3598)
  • e2a85a1 Retain pure annotations in class fields (#3599)
  • 9bff788 Provide normalized options (#3597)
  • 00e197f Convert tab to spaces (#3601)
  • 462bff7 2.10.9

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.11.2 to 2.12.0.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.12.0

2020-05-31

Features

  • Add an option --waitForBundleInput to let the build wait until all entry point files are available before starting (#3577)

Pull Requests

Commits

The new version differs by 446 commits.

  • aa33e4b 2.12.0
  • ea9ad0b Update changelog
  • c302bb3 Wait for bundle input option (#3577)
  • 2040f82 2.11.2
  • 2b7d5d0 Update changelog
  • 21b015e Make Array.from as side-effectful, use two-argument Array.from when mapping Sets (#3604)
  • 085cfc9 2.11.1
  • 2591660 Update changelog
  • 41778fe Handle side-effects next to side-effect-free default exports in case the default export is reexported (#3602)
  • ca0854e 2.11.0
  • 0634ee9 Update changelog
  • ad6c24a Support optional chaining via acorn fork (#3582)
  • 7285995 System format optional setters (#3592)
  • eb6ce17 Treeshake prototype modifications in classes (#3598)
  • e2a85a1 Retain pure annotations in class fields (#3599)

There are 250 commits in total.

See the full diff

  • The devDependency rollup was updated from 2.12.0 to 2.12.1.

Your tests are passing again with this update. Explicitly upgrade to this version πŸš€

Release Notes for v2.12.1

2020-06-02

Bug Fixes

  • Render valid imports when chunk names correspond to directory names in virtual setups (#3609)

Pull Requests

  • #3609: Handle imports from chunks with names that correspond to parent directory names of other chunks (@guybedford)
Commits

The new version differs by 449 commits.

  • 5bcb3d5 2.12.1
  • 309e8e1 Update changelog
  • 0ffbe94 Handle imports from chunks with names that correspond to parent directory names of other chunks (#3609)
  • aa33e4b 2.12.0
  • ea9ad0b Update changelog
  • c302bb3 Wait for bundle input option (#3577)
  • 2040f82 2.11.2
  • 2b7d5d0 Update changelog
  • 21b015e Make Array.from as side-effectful, use two-argument Array.from when mapping Sets (#3604)
  • 085cfc9 2.11.1
  • 2591660 Update changelog
  • 41778fe Handle side-effects next to side-effect-free default exports in case the default export is reexported (#3602)
  • ca0854e 2.11.0
  • 0634ee9 Update changelog
  • ad6c24a Support optional chaining via acorn fork (#3582)

There are 250 commits in total.

See the full diff