Skip to content

Dependency Updates

Compare
Choose a tag to compare
@devowhippit devowhippit released this 12 Nov 16:26
· 23 commits to main since this release

Migration notes. These are only applicable if you are using custom configurations for the following files.

Lint

Updates to config/lint.js:

  • Update eslint by wrapping existing config in overrideConfig.
eslint: {
  ...
}

Becomes

eslint: {
  overrideConfig: {
    ...
  }
}
  • Update stylelint by adding `custom-syntax: 'postcss-scss'.
stylelint: {
    customSyntax: 'postcss-scss',
    ...
}

Rollup

Add 'preventAssignment': true, to the replace() plugin configuration.

replace({
  'preventAssignment': true,
  'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV)
}),
...

More notes may be added.