Skip to content

Commit

Permalink
chore: rename .ncurc.*.js -> .ncurc.*.cjs
Browse files Browse the repository at this point in the history
  • Loading branch information
matijs authored Mar 13, 2024
1 parent bd7d404 commit d61869d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .ncurc.major.js → .ncurc.major.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const minorConfig = require('./.ncurc.minor');
const minorConfig = require('./.ncurc.minor.cjs');

module.exports = {
...minorConfig,
Expand Down
2 changes: 1 addition & 1 deletion .ncurc.minor.js → .ncurc.minor.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const patchConfig = require('./.ncurc.patch');
const patchConfig = require('./.ncurc.patch.cjs');

module.exports = {
...patchConfig,
Expand Down
File renamed without changes.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@
"test": "pnpm run test-workspaces",
"test-update": "npm-run-all --sequential clean lint build test",
"test-workspaces": "lerna run --no-bail test",
"update-patch": "npm-check-updates --configFileName .ncurc.patch.js",
"update-minor": "npm-check-updates --configFileName .ncurc.minor.js",
"update-major": "npm-check-updates --configFileName .ncurc.major.js",
"update-patch": "npm-check-updates --configFileName .ncurc.patch.cjs",
"update-minor": "npm-check-updates --configFileName .ncurc.minor.cjs",
"update-major": "npm-check-updates --configFileName .ncurc.major.cjs",
"watch:storybook": "lerna run build:stencil && lerna run build:style-dictionary && pnpm --filter ./packages/storybook run storybook",
"watch:style-dictionary": "lerna run watch:style-dictionary"
},
Expand Down

0 comments on commit d61869d

Please sign in to comment.