|
1 | 1 | { |
2 | 2 | "name": "lldb-dap", |
3 | 3 | "displayName": "LLDB DAP", |
4 | | - "version": "0.2.17", |
| 4 | + "version": "0.2.18", |
5 | 5 | "publisher": "llvm-vs-code-extensions", |
6 | 6 | "homepage": "https://lldb.llvm.org", |
7 | 7 | "description": "Debugging with LLDB in Visual Studio Code", |
|
49 | 49 | ], |
50 | 50 | "main": "./out/extension", |
51 | 51 | "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", |
52 | 53 | "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", |
53 | 54 | "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/", |
54 | 55 | "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", |
56 | 57 | "watch": "npm run bundle-webview && tsc -watch -p ./", |
57 | 58 | "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", |
59 | 60 | "publish": "vsce publish", |
60 | 61 | "vscode-uninstall": "code --uninstall-extension llvm-vs-code-extensions.lldb-dap", |
61 | 62 | "vscode-install": "code --install-extension ./out/lldb-dap.vsix" |
|
0 commit comments