Skip to content
Open
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
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v24.13.1
v25.0.0
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
"version": "0.1.0",
"description": "The root of the Cursorless monorepo",
"license": "MIT",
"packageManager": "pnpm@10.13.1",
"packageManager": "pnpm@10.30.3",
"type": "module",
"main": "index.js",
"engines": {
"node": ">=24.13.1"
"node": ">=25.0.0"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Isn't Node.js 25 not an LTS release?

Copy link
Member Author

@AndreasArvidsson AndreasArvidsson Mar 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes. At the same time it's nice to be on the later version and the same I'm using locally. Do you see a problem with going to non lts? If so we could always switch to the latest v24 at least.

},
"scripts": {
"build": "pnpm -r build",
Expand Down
3 changes: 2 additions & 1 deletion packages/cursorless-vscode-tutorial-webview/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"watch": "pnpm run --filter @cursorless/cursorless-vscode-tutorial-webview --parallel '/^watch:.*/'",
"build:esbuild": "esbuild ./src/index.tsx --sourcemap --format=cjs --bundle --outfile=./out/index.js",
"build:tailwind": "pnpx @tailwindcss/cli -i ./src/index.css -o ./out/index.css",
"build": "pnpm build:esbuild --minify && pnpm build:tailwind --minify",
"build": "pnpm build:prod",
"build:prod": "pnpm build:esbuild --minify && pnpm build:tailwind --minify",
"build:dev": "pnpm build:esbuild && pnpm build:tailwind",
"clean": "rm -rf ./out tsconfig.tsbuildinfo ./dist ./build"
},
Expand Down
Loading