Skip to content

Commit 34d88c3

Browse files
committed
Address review feedback for PR #258
1 parent 563ed1d commit 34d88c3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

extensions/vscode/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,8 @@
162162
]
163163
},
164164
"scripts": {
165-
"build": "npm run clean && npm run lint && npm run rebuild:esbuild && npm run bundle",
166-
"bundle": "node esbuild.config.js",
165+
"build": "npm run clean && npm run lint && npm run bundle",
166+
"bundle": "npm run rebuild:esbuild && node esbuild.config.js",
167167
"bundle:server": "node scripts/bundle-server.js",
168168
"clean": "rm -rf dist server .vscode-test/* *.vsix",
169169
"download:vscode": "node scripts/download-vscode.js",
@@ -176,8 +176,8 @@
176176
"test:integration": "npm run download:vscode && vscode-test",
177177
"test:integration:label": "vscode-test --label",
178178
"test:watch": "vitest --watch",
179-
"vscode:prepublish": "npm run clean && npm run lint && npm run rebuild:esbuild && npm run bundle && npm run bundle:server",
180-
"watch": "node esbuild.config.js --watch"
179+
"vscode:prepublish": "npm run clean && npm run lint && npm run bundle && npm run bundle:server",
180+
"watch": "npm run rebuild:esbuild && node esbuild.config.js --watch"
181181
},
182182
"devDependencies": {
183183
"@eslint/js": "^10.0.1",

server/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@
8383
"vitest": "^4.1.4"
8484
},
8585
"scripts": {
86-
"build": "npm run clean && npm run lint && npm run rebuild:esbuild && npm run bundle",
86+
"build": "npm run clean && npm run lint && npm run bundle",
8787
"build:all": "npm run build && npm run test:ql:fail-fast",
88-
"bundle": "node esbuild.config.js",
88+
"bundle": "npm run rebuild:esbuild && node esbuild.config.js",
8989
"rebuild:esbuild": "npm rebuild esbuild --ignore-scripts=false",
9090
"clean": "rm -rf dist .tmp",
9191
"dev:stdio": "npm run build && TRANSPORT_MODE=stdio node dist/codeql-development-mcp-server.js",

0 commit comments

Comments
 (0)