Code breaking with webpack 2
See original GitHub issueI have upgrade my dependencies. It seems your code breaks around this line.
let visibleColumns = decoratedColumns.slice()
let allVisibleColumns = []
visibleColumns = visibleColumns.map((column, i) => {
if (column.columns) {
const visibleSubColumns = column.columns.filter(d => pivotBy.indexOf(d.id) > -1 ? false : _.getFirstDefined(d.show, true))
return {
...column,
columns: visibleSubColumns
}
}
return column
})
Issue Analytics
- State:
- Created 7 years ago
- Reactions:3
- Comments:17 (6 by maintainers)
Top Results From Across the Web
Vendor and code splitting in webpack 2 | by Adam Rackis
Vendor and code splitting in webpack 2. Webpack is an ambitious, powerful tool for bundling modern web applications.
Read more >Webpack 2 - Code splitting top-level dependencies
From the webpack documentation: If you use some libraries with cool dependency trees, it may occur that some files are identical. Webpack can ......
Read more >Understanding Webpack's Code Splitting Feature
In React, code splitting involves applying the dynamic import() syntax to your components so that webpack automatically split the imported ...
Read more >To v2 or v3 from v1 - webpack
Remove it from your configuration. BannerPlugin - breaking change. BannerPlugin no longer accepts two parameters, but a single options object.
Read more >Webpack 2 Tree Shaking Configuration - Modus Create
In the sample code below, I will show how my new Webpack 2 ... Let's review just a few of the breaking changes...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Thanks for finding this bug!
Fixed in 505db8d43ed0b545d48f0ef2b752c2877368fcca (react-table@4.2.4)