Skip to content

Commit afa3802

Browse files
Reduce extension dependencies (#1891)
Remove unnecessary extension dependencies ## 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) - [/] I have not broken the cheatsheet
1 parent dbe101f commit afa3802

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
export const extensionDependencies = [
22
"pokey.parse-tree",
3-
"ms-toolsai.jupyter",
3+
4+
// Register necessary file extensions for tests
45
"scalameta.metals",
5-
"ms-python.python",
66
"mrob95.vscode-talonscript",
77
"jrieken.vscode-tree-sitter-query",
8+
9+
// Necessary for the `drink cell` and `pour cell` tests
10+
"ms-toolsai.jupyter",
811
];

packages/cursorless-vscode/src/scripts/initLaunchSandbox.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import { extensionDependencies } from "@cursorless/common";
77
import * as cp from "child_process";
88

9-
const extraExtensions = ["pokey.command-server", "pokey.talon"];
9+
const extraExtensions = ["pokey.command-server"];
1010

1111
async function main() {
1212
try {

0 commit comments

Comments
 (0)