Skip to content

Commit 8dd54e4

Browse files
committed
Upgrade(UK073): Upgrade packages / change type file rollup / move hooks @appello/web-kit
1 parent 66dec71 commit 8dd54e4

Some content is hidden

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

67 files changed

+1439
-583
lines changed

.eslintignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/.vscode
33
/.idea
44
node_modules
5-
jest.config.js
6-
rollup.config.js
5+
lint-staged.config.js
6+
rollup.config.mjs
77
/dist
88
/scripts

.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

lint-staged.config.js

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module.exports = {
2+
"./src/**/*.{ts,tsx,scss}": "npm run prettier",
3+
"./src/**/*.{js,ts,jsx,tsx}": "npm run lint"
4+
}

0 commit comments

Comments
 (0)