From 889088fb3704ecf48be6a77a6b14357aa015428c Mon Sep 17 00:00:00 2001 From: Paul Bredenberg Date: Thu, 20 Apr 2023 08:59:13 -0400 Subject: [PATCH] chore: add commitlint NPM script to standards NPM script --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index cefe79a..a63053e 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "markdownlint": "markdownlint -c .markdownlint.json -i CHANGELOG.md '{,!(node_modules)/**/}*.md'", "eslint": "eslint '{,!(node_modules|dist)/**/}*.js'", "stylelint": "stylelint './src/scss/**/*.scss'", - "standards": "npm run markdownlint && npm run stylelint && npm run eslint", + "standards": "npm run commitlint && npm run markdownlint && npm run stylelint && npm run eslint", "release:preview": "node ./node_modules/@silvermine/standardization/scripts/release.js preview", "release:prep-changelog": "node ./node_modules/@silvermine/standardization/scripts/release.js prep-changelog", "release:finalize": "node ./node_modules/@silvermine/standardization/scripts/release.js finalize"