Skip to content

Commit

Permalink
reduce pkg size
Browse files Browse the repository at this point in the history
  • Loading branch information
GorvGoyl committed May 12, 2021
1 parent e7bd0c3 commit bc35959
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![shortcut menu bar](images/1.png)
![shortcut menu bar](images/1.jpg)

# Shortcut Menu Bar - VSCode Extension

Expand All @@ -18,7 +18,7 @@ Add 35+ handy buttons like beautify, show opened files, save, toggle terminal, a

Go to VSCode settings (`CTRL+,` or `CMD+,`) and search for `shortcut menu bar`. Toggle buttons from there.

![shortcut menu bar](images/settings.png)
![shortcut menu bar](images/settings.jpg)

## ✅ Currently added buttons

Expand Down Expand Up @@ -58,7 +58,7 @@ You can also trigger a button by using corresponding hotkey combination (Windows
2. Look for `Shortcut Menu Bar: User Button`
3. Add any [VSCode command](https://code.visualstudio.com/docs/getstarted/keybindings#_default-keyboard-shortcuts) or any other extension command in the input field. Button icon will be visible only when you add a command.

![Add Command](images/add-command.png)
![Add Command](images/add-command.jpg)

Optionally, you can also:

Expand Down
5 changes: 3 additions & 2 deletions help.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,9 @@ https://code.visualstudio.com/api/references/extension-manifest
- `npm run lint`
- remove warnings if any
- commit git changes
- `vsce publish`
- prepate git tag release (add binary by running `vsce package`)
- `npm run publish`
- In case of PAT expire error, run `npm run login` and mention new token (take from https://jerrygoyal.visualstudio.com/_usersSettings/tokens ,set **Organization: all accessible organizations** and **Scopes: Full access**)
- prepate git tag release (add binary by running `npm run package`)
- check status: https://marketplace.visualstudio.com/items?itemName=jerrygoyal.shortcut-menu-bar

### Publish on open-vsx
Expand Down
Binary file added images/1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed images/1.png
Binary file not shown.
Binary file added images/add-command.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed images/add-command.png
Binary file not shown.
Binary file added images/settings.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed images/settings.png
Binary file not shown.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "shortcut-menu-bar",
"displayName": "Shortcut Menu Bar",
"description": "Add handy buttons like beautify, show opened files, save, toggle terminal, activity bar etc to editor menu bar. User-defined buttons are also possible.",
"version": "3.0.2",
"version": "3.0.3",
"publisher": "jerrygoyal",
"author": {
"name": "Gourav Goyal"
Expand Down Expand Up @@ -942,7 +942,9 @@
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint src --ext ts",
"publish": "vsce publish"
"login": "vsce login jerrygoyal",
"publish": "vsce publish",
"package": "vsce package"
},
"devDependencies": {
"@types/glob": "^7.1.3",
Expand Down

0 comments on commit bc35959

Please sign in to comment.