diff --git a/commitlint.config.js b/commitlint.config.cjs similarity index 88% rename from commitlint.config.js rename to commitlint.config.cjs index 5f92106800..aaf26b15a6 100644 --- a/commitlint.config.js +++ b/commitlint.config.cjs @@ -20,7 +20,8 @@ const Configuration = { * Any rules defined here will override rules from @commitlint/config-conventional */ rules: { - 'type-enum': [2, 'always', ['build', 'chore', 'ci', 'docs', 'feat', 'fix', 'perf', 'refactor', 'revert', 'style', 'test']], + 'type-enum': [2, 'always', + ['build', 'chore', 'ci', 'docs', 'feat', 'fix', 'perf', 'refactor', 'revert', 'style', 'test']], }, /* * Functions that return true if commitlint should ignore the given message. diff --git a/package.json b/package.json index df7e0d5442..808f621b04 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,9 @@ "test:node:live:debug": "node --inspect --inspect-brk --loader ts-node/esm node_modules/.bin/jasmine --config=jasmine.live.json", "prettify": "prettier --write --parser typescript --tab-width 2 --use-tabs false \"packages/**/+(src|test)/**/*.ts\"", "typedoc": "typedoc --options ./typedoc.json", - "prettify:packages-jsons": "prettier-package-json --write ./**/*/package.json" + "prettify:packages-jsons": "prettier-package-json --write ./**/*/package.json", + "release:dry": "multi-semantic-release --dry-run --debug --deps.release=inherit --ignore-private-packages", + "release": "multi-semantic-release --deps.release=inherid --ignore-private-packages" }, "engines": { "npm": ">=7.0.0",