-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5e5982e
commit e6f5e59
Showing
14 changed files
with
676 additions
and
1,102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
yarn commitlint --edit "$1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
yarn lint-staged-files --debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
434 changes: 217 additions & 217 deletions
434
.yarn/releases/yarn-4.3.0.cjs → .yarn/releases/yarn-4.3.1.cjs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
import { base, defineConfig } from '@hyperse/eslint-config-hyperse'; | ||
import { defineConfig, reactjs } from '@hyperse/eslint-config-hyperse'; | ||
|
||
export default defineConfig([ | ||
...base, | ||
{ | ||
rules: { | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
export default defineConfig( | ||
[ | ||
...reactjs, | ||
{ | ||
rules: { | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
'tailwindcss/no-custom-classname': 'off', | ||
}, | ||
}, | ||
}, | ||
]); | ||
], | ||
['**/.docusaurus'] | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ | |
}, | ||
"scripts": { | ||
"build": "docusaurus build", | ||
"build:twl": "twl -p \"src/css/**/*.css\"", | ||
"changeset": "changeset", | ||
"clear": "docusaurus clear", | ||
"crowdin": "crowdin", | ||
|
@@ -23,6 +24,7 @@ | |
"lint": "eslint .", | ||
"lint-fix": "yarn lint --fix", | ||
"lint-staged-files": "lint-staged --allow-empty", | ||
"prepare": "yarn husky", | ||
"release": "yarn build && changeset publish", | ||
"serve": "docusaurus serve", | ||
"start": "docusaurus start", | ||
|
@@ -50,40 +52,40 @@ | |
] | ||
}, | ||
"dependencies": { | ||
"@crowdin/cli": "^4.0.0", | ||
"@crowdin/crowdin-api-client": "^1.33.2", | ||
"@crowdin/cli": "^4.1.1", | ||
"@crowdin/crowdin-api-client": "^1.35.0", | ||
"@docusaurus/core": "^3.4.0", | ||
"@docusaurus/plugin-content-docs": "^3.4.0", | ||
"@docusaurus/plugin-google-gtag": "^3.4.0", | ||
"@docusaurus/preset-classic": "^3.4.0", | ||
"@mdx-js/react": "^3.0.1", | ||
"clsx": "^2.1.1", | ||
"postcss": "^8.4.38", | ||
"postcss": "^8.4.40", | ||
"prism-react-renderer": "^2.3.1", | ||
"react": "^18.3.1", | ||
"react-dom": "^18.3.1", | ||
"tailwindcss": "^3.4.4" | ||
"tailwindcss": "^3.4.7" | ||
}, | ||
"devDependencies": { | ||
"@changesets/changelog-github": "0.5.0", | ||
"@changesets/cli": "2.27.5", | ||
"@changesets/cli": "2.27.7", | ||
"@commitlint/cli": "19.3.0", | ||
"@commitlint/config-conventional": "19.2.2", | ||
"@docusaurus/module-type-aliases": "3.4.0", | ||
"@hyperse/eslint-config-hyperse": "^1.0.9", | ||
"@hyperse/eslint-config-hyperse": "^1.0.10", | ||
"@hyperse/tailwind-layer": "^1.0.5", | ||
"@tsconfig/docusaurus": "^2.0.3", | ||
"@types/node": "^20.14.7", | ||
"@types/node": "^20.14.12", | ||
"@types/prettier": "3.0.0", | ||
"@types/react": "^18.3.3", | ||
"@types/react-dom": "^18.3.0", | ||
"commitizen": "4.3.0", | ||
"cz-conventional-changelog": "3.3.0", | ||
"eslint": "^9.5.0", | ||
"husky": "9.0.11", | ||
"eslint": "^9.8.0", | ||
"husky": "9.1.3", | ||
"lint-staged": "15.2.7", | ||
"typescript": "5.5.2", | ||
"vite": "^5.3.1", | ||
"vitest": "^1.6.0" | ||
"typescript": "5.5.4", | ||
"vitest": "^2.0.4" | ||
}, | ||
"packageManager": "[email protected].0" | ||
"packageManager": "[email protected].1" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
const handler = (api) => {}; | ||
|
||
const config = {}; | ||
|
||
module.exports = { | ||
handler, | ||
config, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { configDefaults, defineConfig } from 'vitest/config'; | ||
|
||
export default defineConfig({ | ||
test: { | ||
globals: true, | ||
testTimeout: 100000, | ||
exclude: [...configDefaults.exclude], | ||
alias: { | ||
'@/': new URL('./src/', import.meta.url).pathname, | ||
}, | ||
include: ['**/?(*.){test,spec}.?(c|m)[jt]s?(x)'], | ||
}, | ||
}); |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.