posva / vue-mdc

Material web components for Vue.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

greenkeeper opened this issue Β· comments

Version 2.4.0 of webpack just got published.

Branch Build failing 🚨
Dependency webpack
Current Version 2.3.3
Type devDependency

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

As webpack is β€œonly” a devDependency of this project it might not break production or downstream projects, but β€œonly” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this πŸ’ͺ


Status Details
  • ❌ ci/circleci Your tests failed on CircleCI Details
Release Notes v2.4.0

Highlighted Features:

import() now allows to configure a chunk name

import(/* webpackChunkName: "my-chunk-name" */ "module")

require.ensure has a error callback

require.ensure([], () => {
    require("a");
}, err => {
    console.error("We failed to load chunk: " + err);
}, "chunk-name");

Features:

  • update to acorn 5
  • resolve context is provided to resolver
  • add warningsFilter to stats options to filter warnings
  • add __webpack_chunkname__ to ExtendedAPIPlugin
  • support string chunk ids
  • add NamedChunksPlugin which allows to set chunk id, i. e. to chunk name
  • allow to provided different watch options for multiple compilations
  • add error handler callback to require.ensure
  • add chunk name option for import()

Bugfixes:

  • main flag for HMR is set correctly
  • ignored modules are now context-agnositic
  • recorded paths are now platform-agnositic
  • fix for local AMD modules which wrap commonjs
  • erros now print more detailed message when logged
  • fix missing SourceMaps for non-entry chunks after rebuild
  • variables now hoist in scope
Commits

The new version differs by 252 commits .

  • 0cbd8fd 2.4.0
  • ab22702 Merge pull request #4507 from ts-webpack/refactor/clean-code
  • e787452 Merge pull request #4700 from webpack/bug/future-var-declaration
  • 98153f5 Merge pull request #4706 from webpack/test/parser-coverage
  • 52f2daf add test cases and fix a bug
  • e4b8833 improve code coverage
  • 3afe67d add parser prewalking to capture scope
  • 0990915 spacing
  • d8a8bd3 deprecate string option instead of removing it
  • dbc40e8 Merge pull request #4698 from simon04/examples-source-map
  • 0ef0581 Add example demonstrating all source-map variants
  • a822784 Merge pull request #4696 from webpack/bugfix/parser-refactoring
  • ba3688a fixes misstake while es6 refactoring, add support for other variable declarations
  • 07f6281 fix: typos and variables/function misuse
  • 52055ba refactor: dead code elimination

There are 250 commits in total. See the full diff.

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

Version 2.4.1 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes v2.4.1

Bugfixes:

  • Fix scope analysis in function declarations
Commits

The new version differs by 3 commits .

  • bd75356 2.4.1
  • fb698e4 Merge pull request #4710 from webpack/bugfix/prewalk-function-decl
  • 619cf31 prewalk a function declaration

See the full diff.