table
table copied to clipboard
Maintain changelog
We got a problem https://github.com/stylelint/stylelint/pull/2106 in CI after update to latest version (4.0.1). It's hard to keep track of changes not seeing Changelog.
From https://github.com/stylelint/stylelint/pull/2106#issuecomment-262563719
I create issue, let's wait what says contributors
The only breaking change is how you import table.
See https://github.com/gajus/table/issues/25#issuecomment-262209270
In your code base, you simply need to replace:
import table from 'table'; // or // const table = require('table').default;with
import {table} from 'table'; // or // const {table} = require('table');Sorry about the lack of changelog. I don't like the https://github.com/semantic-release/semantic-release tool (because it uses github's releases instead of a static changelog file) and there isn't a feasible alternative at the > moment.
Please suggest how to add automated changelog to the CI https://github.com/gajus/table/issues/27