Skip to content

Commit

Permalink
add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
alasdairhurst committed Jul 3, 2020
1 parent 82a997f commit a24a279
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
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/
18 changes: 18 additions & 0 deletions README.md
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
```
9 changes: 6 additions & 3 deletions package.json
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"
Expand Down

0 comments on commit a24a279

Please sign in to comment.