Skip to content

Commit

Permalink
fix: add esbuild as vscode deps
Browse files Browse the repository at this point in the history
  • Loading branch information
astahmer committed Oct 30, 2023
1 parent 15d5a49 commit f890a56
Show file tree
Hide file tree
Showing 3 changed files with 237 additions and 3 deletions.
6 changes: 4 additions & 2 deletions packages/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -207,21 +207,23 @@
"rewrite-deps": "tsx ./scripts/rewrite-workspace-dependencies.ts",
"override-esbuild": "tsx ./scripts/override-esbuild-with-wasm.ts",
"release": "yarn build --silent && tsx ./scripts/publish.ts",
"local:build": "yarn build:all && yarn build && yarn vsix-builder package"
"pkg": "yarn vsix-builder package"
},
"dependencies": {
"@pandacss/dev": "^0.17.0",
"@pandacss/preset-base": "^0.17.0",
"@pandacss/preset-panda": "^0.17.0",
"@pandacss/ts-plugin": "workspace:^",
"esbuild": "^0.19.5",
"pathe": "1.1.1"
},
"bundledDependencies": [
"@pandacss/ts-plugin",
"@pandacss/dev",
"@pandacss/preset-base",
"@pandacss/preset-panda",
"pathe"
"pathe",
"esbuild"
],
"devDependencies": {
"@pandacss/extension-shared": "workspace:^",
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default defineConfig({
entry: ['src/index.ts', 'src/server.ts'],
format: ['cjs'],
external: ['vscode', 'esbuild'],
minify: false,
minify: true,
outDir: 'dist',
clean: true,
shims: true,
Expand Down
Loading

0 comments on commit f890a56

Please sign in to comment.