-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
82a997f
commit a24a279
Showing
3 changed files
with
33 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Changelog | ||
|
||
## 0.1.0 | ||
Initial prerelease | ||
Added system tray support | ||
Notifies on config change | ||
ctrl/cmd + shift + 1/2/3/4++ support for switching | ||
Backs up initial .npmrc | ||
config is located in ~/.npm_switch/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,19 @@ | ||
# NPM Switch | ||
|
||
## Building NPM Switch for your platform | ||
|
||
``` | ||
git clone https://github.com/alasdairhurst/npm-switch | ||
cd npm-switch | ||
npm install | ||
npm run build | ||
``` | ||
|
||
This will output a directory called npm-switch-<platform>-<architecture> which contains all the files needed for running. | ||
|
||
Alternatively you can start/test using | ||
|
||
``` | ||
npm install | ||
npm start | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
{ | ||
"name": "npm-switch", | ||
"version": "1.0.0", | ||
"version": "0.1.0", | ||
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"build": "electron-packager . npm-switch --overwrite --icon=npm_icon.png", | ||
"start": "electron ." | ||
}, | ||
"author": "", | ||
"license": "ISC", | ||
"author": { | ||
"name": "Alasdair Hurst", | ||
"email": "[email protected]" | ||
}, | ||
"license": "MIT", | ||
"devDependencies": { | ||
"electron": "^9.0.5", | ||
"electron-packager": "^15.0.0" | ||
|