Skip to content
This repository has been archived by the owner on Feb 22, 2020. It is now read-only.

Commit

Permalink
#5 and #6
Browse files Browse the repository at this point in the history
  • Loading branch information
fknop committed May 28, 2016
1 parent 5e53e18 commit 7f5aa64
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-npm",
"displayName": "npm",
"description": "npm commands for VSCode",
"version": "3.2.1",
"version": "3.3.0",
"publisher": "fknop",
"icon": "npm_icon.png",
"engines": {
Expand All @@ -16,7 +16,7 @@
"onCommand:npm-script.installPackage",
"onCommand:npm-script.installPackageDev",
"onCommand:npm-script.runScript",
"onCommand:npm-script.reRunScript",
"onCommand:npm-script.runScriptLatest",
"onCommand:npm-script.init",
"onCommand:npm-script.uninstallPackage",
"onCommand:npm-script.uninstallPackageDev",
Expand Down Expand Up @@ -66,7 +66,7 @@
"category": "npm"
},
{
"command": "npm-script.reRunScript",
"command": "npm-script.runScriptLatest",
"title": "Run last npm script",
"category": "npm"
},
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const activate = function (context: ExtensionContext) {
Commands.registerCommand('npm-script.installPackage', npmInstallPackage),
Commands.registerCommand('npm-script.installPackageDev', npmInstallPackageDev),
Commands.registerCommand('npm-script.runScript', npmRunScript),
Commands.registerCommand('npm-script.reRunScript', npmRunLastScript),
Commands.registerCommand('npm-script.runScriptLatest', npmRunLastScript),
Commands.registerCommand('npm-script.init', npmInit),
Commands.registerCommand('npm-script.uninstallPackage', npmUninstallPackage),
Commands.registerCommand('npm-script.uninstallPackageDev', npmUninstallPackageDev),
Expand Down

0 comments on commit 7f5aa64

Please sign in to comment.