Skip to content

Commit 924caa1

Browse files
Integrate from LLVM at llvm/llvm-project@18cffb8
1 parent f577350 commit 924caa1

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "lldb-dap",
33
"displayName": "LLDB DAP",
4-
"version": "0.2.17",
4+
"version": "0.2.18",
55
"publisher": "llvm-vs-code-extensions",
66
"homepage": "https://lldb.llvm.org",
77
"description": "Debugging with LLDB in Visual Studio Code",
@@ -49,13 +49,14 @@
4949
],
5050
"main": "./out/extension",
5151
"scripts": {
52+
"bundle-extension": "npx tsc -p ./ --noEmit && npx esbuild src-ts/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node --target=node22 --minify",
5253
"bundle-symbols-table-view": "npx tsc -p src-ts/webview --noEmit && npx esbuild src-ts/webview/symbols-table-view.ts --bundle --format=iife --outdir=./out/webview",
5354
"bundle-tabulator": "cp node_modules/tabulator-tables/dist/js/tabulator.min.js ./out/webview/ && cp node_modules/tabulator-tables/dist/css/tabulator_midnight.min.css ./out/webview/ && cp node_modules/tabulator-tables/dist/css/tabulator_simple.min.css ./out/webview/",
5455
"bundle-webview": "npm run bundle-symbols-table-view && npm run bundle-tabulator",
55-
"vscode:prepublish": "npm run bundle-webview && tsc -p ./",
56+
"vscode:prepublish": "npm run bundle-webview && npm run bundle-extension",
5657
"watch": "npm run bundle-webview && tsc -watch -p ./",
5758
"format": "npx prettier './src-ts/' --write",
58-
"package": "rm -rf ./out/lldb-dap.vsix && vsce package --out ./out/lldb-dap.vsix",
59+
"package": "rm -rf ./out && vsce package --out ./out/lldb-dap.vsix",
5960
"publish": "vsce publish",
6061
"vscode-uninstall": "code --uninstall-extension llvm-vs-code-extensions.lldb-dap",
6162
"vscode-install": "code --install-extension ./out/lldb-dap.vsix"

0 commit comments

Comments
 (0)