-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
3af1270
commit 40f7372
Showing
8 changed files
with
31 additions
and
9,375 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,4 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
pnpm test && node_modules/.bin/lint-staged | ||
bun test && node_modules/.bin/lint-staged |
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,4 @@ | ||
{ | ||
"typescript.tsdk": "../node_modules/.pnpm/[email protected]/node_modules/typescript/lib", | ||
"typescript.tsdk": "../node_modules/typescript/lib", | ||
"typescript.enablePromptUseWorkspaceTsdk": true | ||
} |
Binary file not shown.
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 |
---|---|---|
|
@@ -5,26 +5,29 @@ | |
"main": "index.js", | ||
"private": true, | ||
"scripts": { | ||
"build": "turbo run build", | ||
"dev": "turbo run dev", | ||
"test": "turbo run test:ci", | ||
"test:coverage": "pnpm --parallel test:coverage", | ||
"test:watch": "pnpm --parallel test:watch", | ||
"lint": "pnpm -F graph-selector lint", | ||
"build": "bun --filter graph-selector build; bun --filter examples build", | ||
"dev": "bun --filter '*' dev", | ||
"test": "bun --filter '*' test", | ||
"test:watch": "bun --filter '*' test:watch", | ||
"lint": "bun --filter graph-selector lint", | ||
"prepare": "husky install", | ||
"browsers": "pnpm up -r caniuse-lite --workspace graph-selector" | ||
"browsers": "bun --filter graph-selector up -r caniuse-lite" | ||
}, | ||
"workspaces": [ | ||
"graph-selector", | ||
"examples" | ||
], | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC", | ||
"devDependencies": { | ||
"husky": "^8.0.0", | ||
"lint-staged": "^13.0.3", | ||
"turbo": "^1.9.3" | ||
"lint-staged": "^13.0.3" | ||
}, | ||
"packageManager": "[email protected]", | ||
"lint-staged": { | ||
"graph-selector/**/*.{js,ts}": [ | ||
"pnpm -F graph-selector lint:staged" | ||
"bun --filter graph-selector lint:staged" | ||
] | ||
} | ||
} |
Oops, something went wrong.