Skip to content

Commit 04e8c89

Browse files
committed
feat: update packages and fix issues with new versions
1 parent e6e493e commit 04e8c89

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+8121
-64721
lines changed

.husky/commit-msg

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env sh
2+
. "$(dirname -- "$0")/_/husky.sh"
3+
4+
npx --no -- commitlint --edit $1

.husky/pre-commit

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env sh
2+
. "$(dirname -- "$0")/_/husky.sh"
3+
4+
npx lint-staged

.prettierignore

+4
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
node_modules
2+
dist
3+
CHANGELOG.md
4+
/libtests
5+
/includes

.prettierrc.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@
22
"singleQuote": true,
33
"printWidth": 80,
44
"semi": true,
5-
"svelteSortOrder" : "scripts-markup-styles",
6-
"svelteBracketNewLine": true
5+
"svelteSortOrder": "options-markup-scripts-styles"
76
}

commitlint.config.cjs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = { extends: ['@commitlint/config-conventional'] };

0 commit comments

Comments
 (0)