Skip to content
This repository was archived by the owner on Nov 23, 2020. It is now read-only.

chore(deps): update dependency rollup to v1.32.1#517

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/rollup-1.x
Open

chore(deps): update dependency rollup to v1.32.1#517
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/rollup-1.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Apr 10, 2019

This PR contains the following updates:

Package Type Update Change
rollup (source) devDependencies minor 1.9.0 -> 1.32.1

Release Notes

rollup/rollup

v1.32.1

Compare Source

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

v1.32.0

Compare Source

2020-02-28

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

v1.31.1

Compare Source

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

v1.31.0

Compare Source

2020-01-31

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

v1.30.1

Compare Source

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

v1.30.0

Compare Source

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

v1.29.1

Compare Source

2020-01-21

Bug Fixes
  • Avoid crashes for circular reexports when named exports cannot be found (#​3350)
Pull Requests

v1.29.0

Compare Source

2020-01-08

Features
  • Enable top-level await by default (#​3089)
  • Add typings for watch events (#​3302)
Bug Fixes
  • Deconflict files that would conflict only on a case-insensitive OS (#​3317)
  • Do not fail in certain scenarios where a logical expression inside a sequence expression was being directly included (#​3327)
Pull Requests

v1.28.0

Compare Source

2020-01-04

Features
  • Allow piping in stdin via the command line interface (#​3312, #​3290)
  • Allow plugins to mark modules as having syntheticNamedExports for e.g. better CJS interoperability (#​3295)
  • Ignore variable reassignments in dead code when tree-shaking to remove more unneeded code (#​3212)
Bug Fixes
  • Properly respect tree-shaken code when generating sourcemaps (#​3318)
Pull Requests

v1.27.14

Compare Source

2019-12-22

Bug Fixes
  • Update references to official rollup plugins in error messages (#​3297, #​3298)
Pull Requests

v1.27.13

Compare Source

2019-12-14

Bug Fixes
  • Do not truncate environment variable values at the first colon when using the --environment option (#​3283)
Pull Requests

v1.27.12

Compare Source

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)

v1.27.11

Compare Source

2019-12-12

Bug Fixes
  • Resolve a crash due to an infinite loop (#​3280)
Pull Requests

v1.27.10

Compare Source

2019-12-11

Bug Fixes
  • Keep track of function return values in more situations (#​3278)
Pull Requests

v1.27.9

Compare Source

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

v1.27.8

Compare Source

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

v1.27.7

Compare Source

2019-12-01

Bug Fixes
  • Fix a scenario where a reassignments to computed properties were not tracked (#​3267)
Pull Requests

v1.27.6

Compare Source

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

v1.27.5

Compare Source

2019-11-25

Bug Fixes
  • Make sure namespaces for inlined dynamic imports are treated as variable accesses when deconflicting (#​3256)
Pull Requests

v1.27.4

Compare Source

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

v1.27.3

Compare Source

2019-11-20

Bug Fixes
  • Provide better warning when empty chunks are created in a code-splitting scenario (#​3244)
Pull Requests

v1.27.2

Compare Source

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)

v1.27.1

Compare Source

2019-12-22

Bug Fixes
  • Update references to official rollup plugins in error messages (#​3297, #​3298)
Pull Requests

v1.27.0

Compare Source

2019-11-12

Features
  • Add support for output-specific plugins (#​3218)
  • Reenable parallel output processing when using the CLI (#​3218)
  • Warn if files are emitted that would overwrite previously emitted files (#​3218)
Bug Fixes
  • Do not overwrite files emitted in other builds if outputs are generated in parallel (#​3218)
Pull Requests

v1.26.5

Compare Source

2019-11-11

Bug Fixes
  • Fix a regression where it was no longer to pass a certain option format to generate (#​3223)
Pull Requests

v1.26.4

Compare Source

2019-11-09

Bug Fixes
  • Keep watching known files after a plugin error during the initial build (#​3219)
Pull Requests

v1.26.3

Compare Source

2019-11-02

Bug Fixes
  • Work around an incompatibility with rollup-plugin-dts (#​3211)
Pull Requests

v1.26.2

Compare Source

2019-10-31

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

v1.26.1

Compare Source

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

v1.26.0

Compare Source

2019-10-27

Features
  • Only warn when no output is provided for an IIFE bundle but still produce valid code (#​3181)
  • Support reexporting namespaces as a binding (#​3193)
  • Switch from hash.js to crypto for hashing in the Node build for better performance and support for very large assets (#​3194)
Bug Fixes
  • Correctly handle chunks reexporting the same namespace as two different bindings (#​3193)
Pull Requests

v1.25.2

Compare Source

2019-10-23

Bug Fixes
  • Improve performance of bundled UMD code by adding additional parentheses to enforce eager parsing (#​3183)
  • Improve types to tolerate passing a Rollup config with multiple outputs to rollup.rollup (#​3184)
Pull Requests

v1.25.1

Compare Source

2019-10-20

Bug Fixes
  • Handle a situation where code was not included after a switch statement (#​3178)
  • Handle a situation where code was not included after a do-while loop (#​3180)
  • Do not fail if different outputs emit the same file (#​3175)
  • Give access to the original acorn error for parse errors (#​3176)
Pull Requests

v1.25.0

Compare Source

2019-10-18

Features
  • Remove try-catch if there is no side-effect in the try-block (#​3166)
  • Omit side-effect-free trailing cases in switch-statements (#​3166)
  • Remove unused labels (#​3170)
Bug Fixes
  • Do not remove code after labeled statements that contain a throw or return if the label is used (#​3170)
  • Prevent invalid code when expressions are simplified that do not follow a white-space character (#​3173)
  • Do not remove continue statements inside switch statements (#​3166)
  • Prevent trailing empty lines when tree-shaking inside switch statements (#​3166)
Pull Requests

v1.24.0

Compare Source

2019-10-15

Features
  • Respect break, continue, return and throw when tree-shaking to detect dead code (#​3153)
  • Do treat treat hoisted function declarations as "unknown" when checking for call side-effects (#​3153)
Bug Fixes
  • Make sure that unknown import.meta properties produce valid code in SystemJS (#​3152)
  • Make sure treeshake.annotations: false is respected for class instantiation (#​3153)
  • Check property access side-effects for class instantiation (#​3153)
  • Do not suppress break statements inside labeled statements (#​3153)
Pull Requests

v1.23.1

Compare Source

2019-10-05

Bug Fixes
  • Fix a regression where the node types had a specific minimal version (#​3143)
Pull Requests

v1.23.0

Compare Source

2019-10-03

Features
  • Add placeholders for extensions when preserving modules (#​3116)
Pull Requests

v1.22.0

Compare Source

2019-09-29

Features
  • Add a new "hidden" sourcemap type that generates the map files but omits the sourcemap comment (#​3120)
  • Generate more efficient code when using namespaceToStringTag: true (#​3135)
  • Make sure namespace objects do not have a prototype (#​3136)
Bug Fixes
  • Do not ignore side-effectful iterators by always preserving for..of loops for now (#​3132)
  • Make sure --context is observed as a CLI option (#​3134)
  • Do not require specific versions for @​types dependencies (#​3131)
Pull Requests

v1.21.4

Compare Source

2019-09-16

Bug Fixes
  • Recognize common browser globals (#​3117)
  • Do not treat "typeof " as a side-effect (#​3117)
Pull Requests

v1.21.3

Compare Source

2019-09-14

Bug Fixes
  • Fix a regression where modifying a watched file did not trigger a rebuild (#​3112)
Pull Requests
  • #​3112: Fix .addWatchFile() dependencies failing to invalidate in watch mode (@​tivac)

v1.21.2

Compare Source

2019-09-09

Bug Fixes
  • Fix wrong deprecation message to direct to this.emitFile instead of this.emitAsset

v1.21.1

Compare Source

2019-09-09

Bug Fixes
  • Allow legacy plugins to still add assets directly to the bundle object (#​3105)
Pull Requests

v1.21.0

Compare Source

2019-09-08

Features
  • Respect output.entryFileNames when preserving modules (#​3088)
  • Make accessing unknown globals a side-effect unless this is deactivated via treeshake.unknownGlobalSideEffects (#​3068)
  • Respect global objects when checking for pure global functions (#​3068)
  • Introduce a type to more easily distinguish chunks and assets in the output bundle (#​3080)
Bug Fixes
  • Recover in watch mode when the initial build fails (#​3081)
  • Make sure output.strict is respected for SystemJS output (#​3101)
Pull Requests

v1.20.3

Compare Source

2019-08-28

Bug Fixes
  • Make sure file hashes change when a change of the naming pattern leads to a file name change of a dependency (#​3083)
  • Fix several issues where reexporting an external "default" export could lead to invalid or incorrect code (#​3084)
Pull Requests

v1.20.2

Compare Source

2019-08-25

Bug Fixes
  • Avoid an issue where circular namespace reexports would crash Rollup (#​3074)
Pull Requests

v1.20.1

Compare Source

2019-08-22

Bug Fixes
  • Fix an issue where variable names inside dynamic import expressions were not rendered correctly (#​3073)
  • Fix type definition to allow a single watcher config as well as an array (#​3074)
Pull Requests

v1.20.0

Compare Source

2019-08-21

Features
  • Add augmentChunkHash plugin hook to be able to reflect changes in renderChunk in the chunk hash (#​2921)
Bug Fixes
  • Do not mutate the acorn options object (#​3051)
  • Make sure the order of emitted chunks always reflects the order in which they were emitted (#​3055)
  • Do not hang when there are strings containing comment-like syntax in some scenarios (#​3069)
Pull Requests

v1.19.4

Compare Source

2019-08-07

Bug Fixes
  • Prevent invalid code when exporting an external namespace (#​3034)
  • Prevent invalid or non-equivalent code when simplifying expressions in return and throw statements (#​3035)
Pull Requests

v1.19.3

Compare Source

2019-08-06

Bug Fixes
  • Fix wrong URLs in error messages (#​3033)
Pull Requests

v1.19.2

Compare Source

2019-08-05

Bug Fixes
  • Add bin file to package

v1.19.1

Compare Source

2019-08-05

Bug Fixes
  • Remove wrong extension in package.json file (#​3031)
Pull Requests

v1.19.0

Compare Source

2019-08-05

Features
  • Implement a new unified file emission API for assets and chunks with support for explicit file names (#​2999)
  • Use the id of the last module in a chunk as base for the chunk name if no better name is available (#​3025)
  • Use the id of the last module in a chunk as base for the variable name of a chunk in some formats if no better name is available (#​2999)
Bug Fixes
  • Do not produce invalid variable names if an empty name is chosen for a virtual module (#​3026)
  • Fix an issue where a module variable name would conflict with a local variable name in some formats (#​3020)
Pull Requests

v1.18.0

Compare Source

2019-08-01

Features
  • Add externalLiveBindings: false option to optimize code when live bindings are not needed (#​3010)
Pull Requests

v1.17.0

Compare Source

2019-07-15

Features
  • Allow plugins to access current combined sourcemap in transform hook for coverage instrumentation (#​2993)
Pull Requests

v1.16.7

Compare Source

2019-07-09

Bug Fixes
  • Fix an issue where exported import.meta properties would lead to invalid code (#​2986)
Pull Requests

v1.16.6

Compare Source

2019-07-04

Bug Fixes
  • Do not pass undefined to resolveDynamicImport for unresolvable template literals (#​2984)
Pull Requests

v1.16.5

Compare Source

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

v1.16.4

Compare Source

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

v1.16.3

Compare Source

2019-06-29

Bug Fixes
  • Prevent name conflicts with unused function parameters (#​2972)
Pull Requests

v1.16.2

Compare Source

2019-06-22

Bug Fixes
  • Properly wrap dynamic imports in Promises that can be caught when generating CJS output (#​2958)
Pull Requests

v1.16.1

Compare Source

2019-06-21

Pull Requests

v1.16.0

Compare Source

2019-06-21

Features
  • Add strictDeprecations option to throw when currently or upcoming deprecated features are used (#​2945)
  • Keep annotations and comments when simplifying logical and conditional expressions (#​2955)
Bug Fixes
  • Generate proper namespace objects when dynamically importing external dependencies for AMD or CJS formats (#​2954)
  • Fix dynamically imported variables not being resolved correctly when importing from an entry chunk with only a default export (#​2954)
  • Do not reexport default when reexporting a namespace (#​2954)
Pull Requests

v1.15.6

Compare Source

2019-06-16

Bug Fixes
  • No longer use an alternate screen in watch mode to allow scrolling (#​2942)
  • Prioritize non-external imports over external ones when resolving conflicting namespace re-exports (#​2893)
Pull Requests

v1.15.5

Compare Source

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

v1.15.4

Compare Source

2019-06-14

Bug Fixes
  • Improve how asset and chunk URLs are resolved for UMD, IIFE and CJS output (#​2937)
Pull Requests

v1.15.3

Compare Source

2019-06-13

Bug Fixes
  • Always reemit assets and chunks from cached transform hooks (#​2936)
Pull Requests

v1.15.2

Compare Source

2019-06-13

Bug Fixes
  • Make sure c

Renovate configuration

📅 Schedule: "after 11pm,before 6am" in timezone Europe/Warsaw.

🚦 Automerge: Disabled due to failing status checks.

♻️ Rebasing: Whenever PR becomes conflicted, 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 has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot requested a review from kamilkisiela April 10, 2019 22:55
@renovate renovate bot force-pushed the renovate/rollup-1.x branch from 525689b to bb3b3b8 Compare April 11, 2019 06:59
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.9.3 chore(deps): update dependency rollup to v1.10.0 Apr 11, 2019
@renovate renovate bot force-pushed the renovate/rollup-1.x branch from bb3b3b8 to 4276250 Compare April 19, 2019 07:59
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.10.0 chore(deps): update dependency rollup to v1.10.1 Apr 19, 2019
@renovate renovate bot force-pushed the renovate/rollup-1.x branch from 4276250 to 142ef88 Compare May 3, 2019 09:28
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.10.1 chore(deps): update dependency rollup to v1.11.0 May 3, 2019
@renovate renovate bot force-pushed the renovate/rollup-1.x branch from 142ef88 to bc6c81e Compare May 4, 2019 06:37
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.11.0 chore(deps): update dependency rollup to v1.11.1 May 4, 2019
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.11.1 chore(deps): update dependency rollup to v1.11.2 May 4, 2019
@renovate renovate bot force-pushed the renovate/rollup-1.x branch 2 times, most recently from 1e3aa5a to 96f20d4 Compare May 5, 2019 08:52
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.11.2 chore(deps): update dependency rollup to v1.11.3 May 5, 2019
@renovate renovate bot force-pushed the renovate/rollup-1.x branch from 96f20d4 to 2acd4b6 Compare May 15, 2019 06:44
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.11.3 chore(deps): update dependency rollup to v1.12.0 May 15, 2019
@renovate renovate bot force-pushed the renovate/rollup-1.x branch from 2acd4b6 to 09555ad Compare May 16, 2019 06:00
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.12.0 chore(deps): update dependency rollup to v1.12.1 May 16, 2019
@renovate renovate bot force-pushed the renovate/rollup-1.x branch from 09555ad to 45b78c9 Compare May 17, 2019 12:47
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.12.1 chore(deps): update dependency rollup to v1.12.2 May 17, 2019
@renovate renovate bot force-pushed the renovate/rollup-1.x branch from 45b78c9 to 5d110ae Compare May 19, 2019 09:45
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.12.2 chore(deps): update dependency rollup to v1.12.3 May 19, 2019
@renovate renovate bot force-pushed the renovate/rollup-1.x branch from 5d110ae to 8a8c6e1 Compare May 27, 2019 05:47
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.12.3 chore(deps): update dependency rollup to v1.12.4 May 27, 2019
@renovate renovate bot force-pushed the renovate/rollup-1.x branch from 8a8c6e1 to b0963a9 Compare May 30, 2019 10:09
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.12.4 chore(deps): update dependency rollup to v1.12.5 May 30, 2019
@renovate renovate bot force-pushed the renovate/rollup-1.x branch from b0963a9 to b7a3f3a Compare May 31, 2019 08:10
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.12.5 chore(deps): update dependency rollup to v1.13.0 May 31, 2019
@renovate renovate bot force-pushed the renovate/rollup-1.x branch from b7a3f3a to 82398dd Compare June 1, 2019 11:07
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.13.0 chore(deps): update dependency rollup to v1.13.1 Jun 1, 2019
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.14.1 chore(deps): update dependency rollup to v1.14.2 Jun 5, 2019
@renovate renovate bot force-pushed the renovate/rollup-1.x branch from d75016e to 4087e01 Compare June 19, 2019 12:59
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.14.2 chore(deps): update dependency rollup to v1.15.6 Jun 19, 2019
@renovate renovate bot force-pushed the renovate/rollup-1.x branch from 4087e01 to 748d4f9 Compare July 13, 2019 12:00
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.15.6 chore(deps): update dependency rollup to v1.16.7 Jul 13, 2019
@renovate renovate bot force-pushed the renovate/rollup-1.x branch from 748d4f9 to 9f4a31b Compare August 10, 2019 09:01
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.16.7 chore(deps): update dependency rollup to v1.19.4 Aug 10, 2019
@renovate renovate bot force-pushed the renovate/rollup-1.x branch from 9f4a31b to 415997f Compare August 23, 2019 07:01
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.19.4 chore(deps): update dependency rollup to v1.20.1 Aug 23, 2019
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.20.1 chore(deps): update dependency rollup to v1.20.3 Sep 5, 2019
@renovate renovate bot force-pushed the renovate/rollup-1.x branch from 415997f to 9639c59 Compare September 5, 2019 02:01
@renovate renovate bot force-pushed the renovate/rollup-1.x branch from 9639c59 to 1ec489e Compare October 3, 2019 10:00
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.20.3 chore(deps): update dependency rollup to v1.22.0 Oct 3, 2019
@renovate renovate bot force-pushed the renovate/rollup-1.x branch from 1ec489e to f4d73e4 Compare November 11, 2019 21:58
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.22.0 chore(deps): update dependency rollup to v1.26.5 Nov 11, 2019
@renovate renovate bot force-pushed the renovate/rollup-1.x branch from f4d73e4 to 5dcb8e9 Compare November 21, 2019 10:58
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.26.5 chore(deps): update dependency rollup to v1.27.3 Nov 21, 2019
@renovate renovate bot force-pushed the renovate/rollup-1.x branch from 5dcb8e9 to 23256fc Compare December 14, 2019 22:51
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.27.3 chore(deps): update dependency rollup to v1.27.13 Dec 14, 2019
@renovate renovate bot force-pushed the renovate/rollup-1.x branch from 23256fc to 768d51e Compare December 30, 2019 16:59
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.27.13 chore(deps): update dependency rollup to v1.27.14 Dec 30, 2019
@renovate renovate bot force-pushed the renovate/rollup-1.x branch from 768d51e to 5f8765c Compare January 18, 2020 19:01
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.27.14 chore(deps): update dependency rollup to v1.29.0 Jan 18, 2020
@renovate renovate bot force-pushed the renovate/rollup-1.x branch from 5f8765c to 6dcd4a5 Compare February 8, 2020 18:57
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.29.0 chore(deps): update dependency rollup to v1.31.0 Feb 8, 2020
@renovate renovate bot force-pushed the renovate/rollup-1.x branch from 6dcd4a5 to a9b9797 Compare February 21, 2020 06:57
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.31.0 chore(deps): update dependency rollup to v1.31.1 Feb 21, 2020
@renovate renovate bot force-pushed the renovate/rollup-1.x branch from a9b9797 to ba7a17e Compare March 14, 2020 11:56
@renovate renovate bot changed the title chore(deps): update dependency rollup to v1.31.1 chore(deps): update dependency rollup to v1.32.1 Apr 28, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants