Skip to content

Commit

Permalink
fix: upgrade packages and fix issues with new versions
Browse files Browse the repository at this point in the history
  • Loading branch information
hperrin committed Jul 22, 2022
1 parent 9fd5ee5 commit 67f45cc
Show file tree
Hide file tree
Showing 91 changed files with 18,757 additions and 18,464 deletions.
6 changes: 3 additions & 3 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx --no-install commitlint --edit
npx --no -- commitlint --edit $1
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npm run lint
7 changes: 7 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
node_modules
bare.css
CHANGELOG.md
package-lock.json
dist
.svelte-kit
/.github
5 changes: 1 addition & 4 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"svelteSortOrder": "options-markup-scripts-styles"
}
}
2 changes: 1 addition & 1 deletion commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = {extends: ['@commitlint/config-conventional']}
module.exports = { extends: ['@commitlint/config-conventional'] };
8 changes: 2 additions & 6 deletions lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,9 @@
"version": "6.0.0-beta.16",
"command": {
"version": {
"allowBranch": [
"master"
],
"allowBranch": ["master"],
"conventionalCommits": true
}
},
"packages": [
"packages/*"
]
"packages": ["packages/*"]
}
Loading

0 comments on commit 67f45cc

Please sign in to comment.