Skip to content

Commit 67f45cc

Browse files
committed
fix: upgrade packages and fix issues with new versions
1 parent 9fd5ee5 commit 67f45cc

File tree

91 files changed

+18757
-18464
lines changed

Some content is hidden

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

91 files changed

+18757
-18464
lines changed

.husky/commit-msg

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

4-
npx --no-install commitlint --edit
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+
npm run lint

.prettierignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
node_modules
2+
bare.css
3+
CHANGELOG.md
4+
package-lock.json
5+
dist
6+
.svelte-kit
7+
/.github

.prettierrc

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
{
2-
"trailingComma": "es5",
3-
"tabWidth": 2,
4-
"semi": true,
52
"singleQuote": true,
63
"svelteSortOrder": "options-markup-scripts-styles"
7-
}
4+
}

commitlint.config.js

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

lerna.json

+2-6
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,9 @@
22
"version": "6.0.0-beta.16",
33
"command": {
44
"version": {
5-
"allowBranch": [
6-
"master"
7-
],
5+
"allowBranch": ["master"],
86
"conventionalCommits": true
97
}
108
},
11-
"packages": [
12-
"packages/*"
13-
]
9+
"packages": ["packages/*"]
1410
}

0 commit comments

Comments
 (0)