Skip to content

Commit

Permalink
chore: add @types/node to .ncurc.major.cjs
Browse files Browse the repository at this point in the history
  • Loading branch information
matijs committed Oct 29, 2024
1 parent 7972690 commit ab0b67d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .ncurc.major.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ const minorConfig = require('./.ncurc.minor.cjs');

module.exports = {
...minorConfig,
reject: [...minorConfig.reject, 'eslint', 'eslint-plugin-json', 'style-dictionary'],
reject: [
...minorConfig.reject,
// @types/node is kept in line with the node version in .nvmrc and package.json#engines.node
'@types/node',
'eslint',
'eslint-plugin-json',
'style-dictionary',
],
target: 'latest',
};

0 comments on commit ab0b67d

Please sign in to comment.