-
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.
chore: updated dependencies with vite & vitest configs
- Loading branch information
1 parent
c27a78c
commit 3420266
Showing
9 changed files
with
6,877 additions
and
3,045 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
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,5 +1 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
yarn build | ||
yarn prettier | ||
yarn test |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
nodeLinker: node-modules | ||
|
||
yarnPath: .yarn/releases/yarn-4.5.0.cjs |
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 |
---|---|---|
|
@@ -33,39 +33,42 @@ | |
"build": "vite build && typedoc", | ||
"build:watch": "vite build --watch && typedoc", | ||
"dev": "vite && typedoc", | ||
"prepare": "husky install", | ||
"lint": "eslint src", | ||
"prepare": "husky", | ||
"prettier": "prettier --write .", | ||
"preview": "vite preview", | ||
"test": "vitest run", | ||
"test:ui": "vitest --ui --coverage", | ||
"test:coverage": "vitest run --coverage", | ||
"test:run": "vitest run", | ||
"test:watch": "vitest" | ||
}, | ||
"dependencies": { | ||
"@microsoft/tsdoc": "^0.14.1", | ||
"picocolors": "^1.0.1" | ||
"@microsoft/tsdoc": "^0.14.2", | ||
"picocolors": "^1.1.0" | ||
}, | ||
"devDependencies": { | ||
"@commitlint/cli": "^19.3.0", | ||
"@commitlint/config-conventional": "^19.2.2", | ||
"@commitlint/cli": "^19.5.0", | ||
"@commitlint/config-conventional": "^19.5.0", | ||
"@nabla/vite-plugin-eslint": "^2.0.4", | ||
"@trivago/prettier-plugin-sort-imports": "^4.3.0", | ||
"@types/node": "^20.12.12", | ||
"@typescript-eslint/eslint-plugin": "^7.9.0", | ||
"@typescript-eslint/parser": "^7.9.0", | ||
"@types/node": "^20.16.11", | ||
"@typescript-eslint/eslint-plugin": "^7.18.0", | ||
"@typescript-eslint/parser": "^7.18.0", | ||
"@vitest/coverage-v8": "^1.6.0", | ||
"@vitest/ui": "^1.6.0", | ||
"eslint": "^9.2.0", | ||
"husky": "^9.0.11", | ||
"eslint": "^9.12.0", | ||
"globals": "^15.11.0", | ||
"husky": "^9.1.6", | ||
"prettier": "3.2.5", | ||
"rollup-plugin-visualizer": "^5.12.0", | ||
"tslib": "^2.4.0", | ||
"typedoc": "^0.25.13", | ||
"typescript": "^5.4.5", | ||
"vite": "^5.2.11", | ||
"tslib": "^2.7.0", | ||
"typedoc": "^0.26.9", | ||
"typescript": "^5.6.3", | ||
"vite": "^5.4.8", | ||
"vite-plugin-dts": "^3.9.1", | ||
"vite-plugin-eslint": "^1.8.1", | ||
"vite-plugin-progress": "^0.0.7", | ||
"vitest": "^1.6.0" | ||
} | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
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 |
---|---|---|
|
@@ -18,6 +18,7 @@ export default defineConfig({ | |
"_docs", | ||
"src/main.ts", | ||
"commitlint.config.js", | ||
".yarn", | ||
], | ||
}, | ||
}, | ||
|
Oops, something went wrong.