Skip to content

Commit a24a279

Browse files
committed
add changelog
1 parent 82a997f commit a24a279

File tree

3 files changed

+33
-3
lines changed

3 files changed

+33
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Changelog
2+
3+
## 0.1.0
4+
Initial prerelease
5+
Added system tray support
6+
Notifies on config change
7+
ctrl/cmd + shift + 1/2/3/4++ support for switching
8+
Backs up initial .npmrc
9+
config is located in ~/.npm_switch/

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,19 @@
11
# NPM Switch
2+
3+
## Building NPM Switch for your platform
4+
5+
```
6+
git clone https://github.com/alasdairhurst/npm-switch
7+
cd npm-switch
8+
npm install
9+
npm run build
10+
```
11+
12+
This will output a directory called npm-switch-<platform>-<architecture> which contains all the files needed for running.
13+
14+
Alternatively you can start/test using
15+
16+
```
17+
npm install
18+
npm start
19+
```

package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
{
22
"name": "npm-switch",
3-
"version": "1.0.0",
3+
"version": "0.1.0",
44
"description": "",
55
"main": "index.js",
66
"scripts": {
77
"test": "echo \"Error: no test specified\" && exit 1",
88
"build": "electron-packager . npm-switch --overwrite --icon=npm_icon.png",
99
"start": "electron ."
1010
},
11-
"author": "",
12-
"license": "ISC",
11+
"author": {
12+
"name": "Alasdair Hurst",
13+
"email": "omega@omegahurst.co.uk"
14+
},
15+
"license": "MIT",
1316
"devDependencies": {
1417
"electron": "^9.0.5",
1518
"electron-packager": "^15.0.0"

0 commit comments

Comments
 (0)