From d61869df97c144057de150a5dc00adf524caa167 Mon Sep 17 00:00:00 2001 From: Matijs Date: Wed, 13 Mar 2024 14:49:10 +0100 Subject: [PATCH] chore: rename .ncurc.*.js -> .ncurc.*.cjs --- .ncurc.major.js => .ncurc.major.cjs | 2 +- .ncurc.minor.js => .ncurc.minor.cjs | 2 +- .ncurc.patch.js => .ncurc.patch.cjs | 0 package.json | 6 +++--- 4 files changed, 5 insertions(+), 5 deletions(-) rename .ncurc.major.js => .ncurc.major.cjs (65%) rename .ncurc.minor.js => .ncurc.minor.cjs (65%) rename .ncurc.patch.js => .ncurc.patch.cjs (100%) diff --git a/.ncurc.major.js b/.ncurc.major.cjs similarity index 65% rename from .ncurc.major.js rename to .ncurc.major.cjs index 3ca03e00..b6c9b424 100644 --- a/.ncurc.major.js +++ b/.ncurc.major.cjs @@ -1,4 +1,4 @@ -const minorConfig = require('./.ncurc.minor'); +const minorConfig = require('./.ncurc.minor.cjs'); module.exports = { ...minorConfig, diff --git a/.ncurc.minor.js b/.ncurc.minor.cjs similarity index 65% rename from .ncurc.minor.js rename to .ncurc.minor.cjs index 80ed98cd..e05ae9f4 100644 --- a/.ncurc.minor.js +++ b/.ncurc.minor.cjs @@ -1,4 +1,4 @@ -const patchConfig = require('./.ncurc.patch'); +const patchConfig = require('./.ncurc.patch.cjs'); module.exports = { ...patchConfig, diff --git a/.ncurc.patch.js b/.ncurc.patch.cjs similarity index 100% rename from .ncurc.patch.js rename to .ncurc.patch.cjs diff --git a/package.json b/package.json index db2240b9..317c205d 100644 --- a/package.json +++ b/package.json @@ -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" },