Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 0 additions & 24 deletions packages/cursorless-cheatsheet/package.json

This file was deleted.

1 change: 0 additions & 1 deletion packages/cursorless-cheatsheet/src/index.ts

This file was deleted.

4 changes: 0 additions & 4 deletions packages/cursorless-cheatsheet/tsconfig.json

This file was deleted.

8 changes: 4 additions & 4 deletions packages/cursorless-vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1284,12 +1284,13 @@
"typecheck": "tsc",
"clean": "rm -rf ./out tsconfig.tsbuildinfo ./dist ./build",
"test": "pnpm ensure-grammar-up-to-date",
"dev": "pnpm generate-grammar && pnpm run compile:dev && pnpm -F @cursorless/cursorless-vscode-tutorial-webview bundle:dev && pnpm run populate-dist",
"build": "pnpm generate-grammar && pnpm run compile:prod && pnpm -F @cursorless/cursorless-vscode-tutorial-webview bundle:prod && pnpm -F @cursorless/cheatsheet-local bundle:prod && pnpm run populate-dist",
"dev": "pnpm generate-grammar && pnpm run compile:dev && pnpm run bundle:dev && pnpm run populate-dist",
"build": "pnpm generate-grammar && pnpm run compile:prod && pnpm run bundle:prod && pnpm run populate-dist",
"bundle:dev": "pnpm -F @cursorless/cursorless-vscode-tutorial-webview -F @cursorless/cheatsheet-local run bundle:dev",
"bundle:prod": "pnpm -F @cursorless/cursorless-vscode-tutorial-webview -F @cursorless/cheatsheet-local run bundle:prod",
"compile:prod": "pnpm run compile:base --minify",
"compile:dev": "pnpm run compile:base --sourcemap",
"compile:watch": "pnpm run compile:base --sourcemap --watch",
"compile:meta": "pnpm run compile:base --metafile=meta.json",
"compile:base": "bash ./scripts/compile-esbuild.sh",
"install-local": "bash ./scripts/install-local.sh",
"install-from-pr": "bash ./scripts/install-from-pr.sh",
Expand All @@ -1309,7 +1310,6 @@
],
"dependencies": {
"@cursorless/common": "workspace:*",
"@cursorless/cursorless-cheatsheet": "workspace:*",
"@cursorless/cursorless-engine": "workspace:*",
"@cursorless/cursorless-tutorial": "workspace:*",
"@cursorless/node-common": "workspace:*",
Expand Down
5 changes: 1 addition & 4 deletions packages/cursorless-vscode/src/registerCommands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,12 @@ import type {
ScopeType,
} from "@cursorless/common";
import { CURSORLESS_COMMAND_ID } from "@cursorless/common";
import {
showCheatsheet,
updateDefaults,
} from "@cursorless/cursorless-cheatsheet";
import type {
CommandApi,
StoredTargetMap,
} from "@cursorless/cursorless-engine";
import { analyzeCommandHistory } from "@cursorless/cursorless-engine";
import { showCheatsheet, updateDefaults } from "@cursorless/node-common";
import type {
ScopeTestRecorder,
TestCaseRecorder,
Expand Down
4 changes: 3 additions & 1 deletion packages/node-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
"dependencies": {
"@cursorless/common": "workspace:*",
"glob": "^13.0.6",
"lodash-es": "^4.17.23"
"immer": "^11.1.4",
"lodash-es": "^4.17.23",
"node-html-parser": "^7.1.0"
},
"devDependencies": {
"@types/chai": "^5.2.3",
Expand Down
1 change: 1 addition & 0 deletions packages/node-common/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export * from "./Cheatsheet";
export * from "./FileSystemCommandHistoryStorage";
export * from "./FileSystemRawTreeSitterQueryProvider";
export * from "./FileSystemTalonSpokenForms";
Expand Down
31 changes: 6 additions & 25 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@
"paths": {
"@cursorless/cheatsheet": ["./packages/cheatsheet/src/index.ts"],
"@cursorless/common": ["./packages/common/src/index.ts"],
"@cursorless/cursorless-cheatsheet": [
"./packages/cursorless-cheatsheet/src/index.ts"
],
"@cursorless/cursorless-engine": [
"./packages/cursorless-engine/src/index.ts"
],
Expand Down
3 changes: 0 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
{
"path": "./packages/common"
},
{
"path": "./packages/cursorless-cheatsheet"
},
{
"path": "./packages/cursorless-engine"
},
Expand Down
Loading