An in-range update of rollup is breaking the build π¨
greenkeeper opened this issue Β· 3 comments
The devDependency rollup was updated from 1.29.0
to 1.29.1
.
π¨ 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).
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
- #3335: Fix typo (@robbinworks)
- #3342: Remove ":" from test file names for Windows and update dependencies (@lukastaegert)
- #3350: Properly handle circular reexports (@lukastaegert)
Commits
The new version differs by 5 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)
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.29.0 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 from1.29.1
to1.30.0
.
Your tests are still failing with this version. Compare changes
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
- #3353: Add option to avoid hoisting transitive imports (@lukastaegert)
- #3354: Improve chunking algorithm for dynamic imports (@tjenkinson and @lukastaegert)
- The
devDependency
rollup was updated from1.30.0
to1.30.1
.
Your tests are still failing with this version. Compare changes
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
- #3357:Resolve issues with circular dynamic entries (@lukastaegert)