-
-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Checklist - [-] I have added [tests](https://www.cursorless.org/docs/contributing/test-case-recorder/) - [-] I have updated the [docs](https://github.com/cursorless-dev/cursorless/tree/main/docs) and [cheatsheet](https://github.com/cursorless-dev/cursorless/tree/main/cursorless-talon/src/cheatsheet) - [x] I have not broken the cheatsheet - [x] Check source maps are working for extension - [x] Check source maps are working in test files - [x] Don't depend on esbuild in all packages? - [x] Try running vsix from CI locally - [-] Use two .. for update recorded tests script --------- Co-authored-by: Andreas Arvidsson <[email protected]>
- Loading branch information
1 parent
d981813
commit 7efcbfd
Showing
64 changed files
with
3,529 additions
and
2,886 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
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 |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
- uses: pnpm/action-setup@v2 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
node-version-file: package.json | ||
cache: pnpm | ||
- run: pnpm --color install | ||
- uses: pre-commit/[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
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
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
"scripts": { | ||
"build": "pnpm -r build", | ||
"clean": "pnpm -r clean", | ||
"compile": "tsc --build", | ||
"compile": "tsc --build && pnpm -r --if-present compile:esbuild", | ||
"fix:eslint": "pnpm lint:ts --fix", | ||
"fix:meta": "pnpm run meta-updater:base && pnpm -r exec prettier --write tsconfig.json package.json", | ||
"fix:syncpack": "pnpm syncpack fix-mismatches", | ||
|
@@ -18,30 +18,33 @@ | |
"preinstall": "npx only-allow pnpm", | ||
"test-compile": "tsc --build", | ||
"test": "pnpm compile && pnpm lint && pnpm -F '!test-harness' test && pnpm -F test-harness test", | ||
"transform-recorded-tests": "tsx --conditions=cursorless:bundler packages/cursorless-engine/src/scripts/transformRecordedTests/index.ts", | ||
"watch": "tsc --build --watch" | ||
"transform-recorded-tests": "./packages/common/scripts/my-ts-node.js packages/cursorless-engine/src/scripts/transformRecordedTests/index.ts", | ||
"watch": "pnpm run -w --parallel '/^watch:.*/'", | ||
"watch:esbuild": "pnpm run -r --parallel --if-present watch:esbuild", | ||
"watch:tsc": "tsc --build --watch" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@pnpm/meta-updater": "1.0.0", | ||
"@types/node": "^16.11.3", | ||
"@types/node": "^18.18.2", | ||
"@typescript-eslint/eslint-plugin": "^6.9.0", | ||
"@typescript-eslint/parser": "^6.9.0", | ||
"eslint": "^8.38.0", | ||
"esbuild": "^0.17.11", | ||
"eslint": "^8.53.0", | ||
"eslint-config-prettier": "^8.8.0", | ||
"eslint-import-resolver-typescript": "3.5.5", | ||
"eslint-plugin-import": "2.28.1", | ||
"eslint-plugin-unicorn": "49.0.0", | ||
"eslint-plugin-unused-imports": "^3.0.0", | ||
"prettier": "3.0.3", | ||
"syncpack": "9.8.4", | ||
"tsx": "3.12.3", | ||
"typescript": "^5.1.6" | ||
"typescript": "^5.2.2" | ||
}, | ||
"pnpm": { | ||
"patchedDependencies": { | ||
"@docusaurus/[email protected]-alpha.0": "patches/@[email protected]" | ||
"@docusaurus/[email protected]": "patches/@[email protected]" | ||
}, | ||
"peerDependencyRules": { | ||
"ignoreMissing": [ | ||
|
@@ -53,5 +56,9 @@ | |
} | ||
} | ||
}, | ||
"packageManager": "[email protected]" | ||
"engines": { | ||
"node": ">=18.18.2" | ||
}, | ||
"packageManager": "[email protected]", | ||
"type": "module" | ||
} |
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 was deleted.
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
Oops, something went wrong.