Skip to content

Commit

Permalink
fix: deploy fix for vsix
Browse files Browse the repository at this point in the history
  • Loading branch information
benfdking committed Sep 16, 2024
1 parent 809d233 commit 82ecaaa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions editors/code/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
"main": "./dist/native.cjs",
"browser": "./dist/browser.js",
"scripts": {
"build": "pnpm run build:wasm_lsp && pnpm run check-types",
"build": "pnpm run build:wasm_lsp-release && pnpm run check-types && node esbuild.js --production",
"vscode:prepublish": "pnpm run lint && pnpm run build:wasm_lsp-release && pnpm run check-types && node esbuild.js --production",
"compile": "pnpm run check-types && npm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "vsce package",
"build:wasm_lsp": "env-var wasm-pack build --dev --target web ../../crates/lsp --out-dir $INIT_CWD/dist",
"build:wasm_lsp-release": "env-var wasm-pack build --release --target web ../../crates/lsp --out-dir $INIT_CWD/dist",
"build:wasm_lsp": "env-var wasm-pack build --dev --target web ../../crates/lsp --out-dir ../../editors/code/dist",
"build:wasm_lsp-release": "env-var wasm-pack build --release --target web ../../crates/lsp --out-dir ../../editors/code/dist",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "pnpm run compile-tests && pnpm run compile && npm run lint",
Expand Down

0 comments on commit 82ecaaa

Please sign in to comment.