diff options
author | 2023-09-01 13:40:48 -0700 | |
---|---|---|
committer | 2023-09-01 13:40:48 -0700 | |
commit | 57caea5ae7adbe391e492a4c6f64904cdc15f1e8 (patch) | |
tree | b778aba9e1fa1192eaa795d1e07455a89f34b4f1 /packages/bun-vscode/package.json | |
parent | fe3be666bc3f81707427f55472aa6dc3240471a1 (diff) | |
download | bun-57caea5ae7adbe391e492a4c6f64904cdc15f1e8.tar.gz bun-57caea5ae7adbe391e492a4c6f64904cdc15f1e8.tar.zst bun-57caea5ae7adbe391e492a4c6f64904cdc15f1e8.zip |
Fix README for extension
Diffstat (limited to '')
-rw-r--r-- | packages/bun-vscode/package.json | 13 |
1 files changed, 9 insertions, 4 deletions
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" |