Skip to content

Commit

Permalink
Fix typescript-deno-plugin build (dev mode)
Browse files Browse the repository at this point in the history
  • Loading branch information
redking00 committed Dec 18, 2024
1 parent 9a13f63 commit a23f8a3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 0 additions & 2 deletions .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ docs
screenshots
tsconfig.json
typescript-deno-plugin
!typescript-deno-plugin/dist/*.js
!typescript-deno-plugin/package.json
node_modules
!node_modules/typescript-deno-plugin/dist/*.js
!node_modules/typescript-deno-plugin/package.json
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Visual Studio Code plugin for Deno lsp support on notebooks (+ NBTS serializer + DenoNBTS kernel)",
"author": "redking00 & Deno Land Inc.",
"license": "MIT",
"version": "1.0.19",
"version": "1.0.20",
"icon": "deno.png",
"galleryBanner": {
"color": "#3B3738",
Expand Down Expand Up @@ -871,10 +871,11 @@
]
},
"scripts": {
"vscode:prepublish": "npm i && npm run esbuild-plugin && npm i && npm run esbuild-base && copy-folder typescript-deno-plugin node_modules/typescript-deno-plugin",
"vscode:prepublish": "npm i && npm run esbuild-plugin && npm i && npm run plugin-copy && npm run esbuild-base",
"esbuild-base": "esbuild ./client/src/extension.ts --bundle --outfile=client/dist/main.js --external:vscode --external:zeromq --format=cjs --platform=node",
"esbuild-plugin": "esbuild ./typescript-deno-plugin/src/index.ts --bundle --outfile=typescript-deno-plugin/dist/index.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-plugin -- --sourcemap && npm run esbuild-base -- --sourcemap",
"esbuild": "npm run esbuild-plugin -- --sourcemap && npm run plugin-copy && npm run esbuild-base -- --sourcemap",
"plugin-copy": "copy-folder typescript-deno-plugin node_modules/typescript-deno-plugin",
"test-compile": "tsc -b",
"fmt": "deno fmt .vscode .github client/src media schemas typescript-deno-plugin/src typescript-deno-plugin/*.md docs package.json tsconfig.json README.md CHANGELOG.md",
"lint": "deno lint --unstable client/src typescript-deno-plugin/src docs",
Expand Down

0 comments on commit a23f8a3

Please sign in to comment.