From a24a279432c717196889cfe6ec759d2e1ed5f7fb Mon Sep 17 00:00:00 2001 From: Alasdair Hurst Date: Fri, 3 Jul 2020 23:05:28 +0100 Subject: [PATCH] add changelog --- CHANGELOG.md | 9 +++++++++ README.md | 18 ++++++++++++++++++ package.json | 9 ++++++--- 3 files changed, 33 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..ac2fcd2 --- /dev/null +++ b/CHANGELOG.md @@ -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/ \ No newline at end of file diff --git a/README.md b/README.md index e790aae..92c6e4a 100644 --- a/README.md +++ b/README.md @@ -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-- which contains all the files needed for running. + +Alternatively you can start/test using + +``` +npm install +npm start +``` \ No newline at end of file diff --git a/package.json b/package.json index 5b52c2c..a881b32 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "npm-switch", - "version": "1.0.0", + "version": "0.1.0", "description": "", "main": "index.js", "scripts": { @@ -8,8 +8,11 @@ "build": "electron-packager . npm-switch --overwrite --icon=npm_icon.png", "start": "electron ." }, - "author": "", - "license": "ISC", + "author": { + "name": "Alasdair Hurst", + "email": "omega@omegahurst.co.uk" + }, + "license": "MIT", "devDependencies": { "electron": "^9.0.5", "electron-packager": "^15.0.0"