Skip to content

Commit

Permalink
Merge branch 'main' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
mfeltscher committed Dec 4, 2024
2 parents 3368c36 + b1f3122 commit c0ef8c0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = {
'array-callback-return': 'error',
'no-debugger': 'error',
'no-alert': 'error',
'no-console': ['error', { allow: ['info', 'warn', 'error', 'trace', 'time', 'timeEnd'] }],
'no-console': ['error', { allow: ['debug', 'info', 'warn', 'error', 'trace', 'time', 'timeEnd'] }],
'newline-before-return': 'error',
'prefer-const': 'error',
'no-else-return': 'error',
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v3
uses: cycjimmy/semantic-release-action@v4
with:
semantic_version: 19
extra_plugins: |
Expand Down
3 changes: 0 additions & 3 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npm run commitlint ${1}
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20
22
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@
"eslint": "^8.0.0"
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@smartive/prettier-config": "^3.0.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"husky": "^9.0.0",
"prettier": "^3.0.0"
},
"scripts": {
"commitlint": "commitlint --edit",
"prepare": "[ ! -f node_modules/.bin/husky ] || husky install"
"prepare": "[ ! -f node_modules/.bin/husky ] || husky"
},
"config": {
"commitizen": {
Expand Down

0 comments on commit c0ef8c0

Please sign in to comment.