question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Code breaking with webpack 2

See original GitHub issue

I 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
    })

code

Issue Analytics

  • State:closed
  • Created 7 years ago
  • Reactions:3
  • Comments:17 (6 by maintainers)

github_iconTop GitHub Comments

1reaction
tannerlinsleycommented, Jan 18, 2017

Thanks for finding this bug!

1reaction
tannerlinsleycommented, Jan 18, 2017

Fixed in 505db8d43ed0b545d48f0ef2b752c2877368fcca (react-table@4.2.4)

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found