diff options
Diffstat (limited to '')
-rw-r--r-- | packages/bun-vscode/README.md | 6 | ||||
-rw-r--r-- | packages/bun-vscode/package.json | 13 |
2 files changed, 12 insertions, 7 deletions
diff --git a/packages/bun-vscode/README.md b/packages/bun-vscode/README.md index 08c81fb2f..ce7f11b73 100644 --- a/packages/bun-vscode/README.md +++ b/packages/bun-vscode/README.md @@ -1,8 +1,8 @@ # Bun for Visual Studio Code - - - + + + <img align="right" src="https://user-images.githubusercontent.com/709451/182802334-d9c42afe-f35d-4a7b-86ea-9985f73f20c3.png" height="150px" style="float: right; padding: 30px;"> diff --git a/packages/bun-vscode/package.json b/packages/bun-vscode/package.json index dac771d2a..73b01e36a 100644 --- a/packages/bun-vscode/package.json +++ b/packages/bun-vscode/package.json @@ -1,6 +1,6 @@ { "name": "bun-vscode", - "version": "0.0.2", + "version": "0.0.3", "author": "oven", "repository": { "type": "git", @@ -178,7 +178,10 @@ "default": false }, "watchMode": { - "type": ["boolean", "string"], + "type": [ + "boolean", + "string" + ], "description": "If the process should be restarted when files change.", "enum": [ true, @@ -253,7 +256,6 @@ "workspace" ], "galleryBanner": { - "color": "#f542ef", "theme": "dark" }, "homepage": "https://bun.sh/", @@ -269,8 +271,11 @@ "publisher": "oven", "scripts": { "build": "node scripts/build.mjs", + "pretest": "bun run build", "test": "node scripts/test.mjs", - "publish": "cd extension && bunx vsce publish" + "prepublish": "bun run build", + "publish": "cd extension && bunx vsce publish", + "postpublish": "npm version patch" }, "workspaceTrust": { "request": "never" |