-
-
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.
Merge pull request #54 from tone-row/fix/comment-highlighting
Fix comment highlighting
- Loading branch information
Showing
14 changed files
with
94 additions
and
8,264 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 |
---|---|---|
|
@@ -6,22 +6,13 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Install Node.js | ||
uses: actions/setup-node@v3 | ||
- name: Setup Bun | ||
uses: oven-sh/setup-bun@v2 | ||
with: | ||
node-version: 16.17.0 | ||
- uses: pnpm/[email protected] | ||
with: | ||
version: 8.4.0 | ||
run_install: true | ||
bun-version: latest | ||
- name: Install Dependencies | ||
run: bun install --frozen-lockfile | ||
- name: Lint | ||
run: pnpm -F graph-selector lint:ci | ||
run: bun --filter graph-selector lint:ci | ||
- name: Run Tests | ||
run: pnpm test | ||
# - name: Upload Coverage | ||
# uses: codecov/codecov-action@v2 | ||
# with: | ||
# root_dir: ./graph-selector # optional (default = .) | ||
# fail_ci_if_error: false # optional (default = false) | ||
# verbose: true # optional (default = false) | ||
# token: ${{ secrets.CODECOV_TOKEN }} # optional | ||
run: bun --filter graph-selector test |
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 +1 @@ | ||
v18.10.0 | ||
v20.11.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,4 @@ | ||
{ | ||
"typescript.tsdk": "../node_modules/.pnpm/[email protected]/node_modules/typescript/lib", | ||
"typescript.tsdk": "../node_modules/typescript/lib", | ||
"typescript.enablePromptUseWorkspaceTsdk": true | ||
} |
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
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
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.