Skip to content

Commit

Permalink
small doc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
todbot committed Dec 3, 2017
1 parent 1ad18fd commit b68fe1d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 2 additions & 0 deletions NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
## NOTES

Random notes / documentation while developing the app
===

NOTE: consider this historical info. most of these are out-of-date as of Nov 2017

### App capability changes / To-do's
- TODO: Entirely rethink color pattern architecture
Expand Down
11 changes: 5 additions & 6 deletions Publishing.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
### Publishing Releases

Steps:
- Update version in package.json
- Update version in package.json and app/package.json
- Build release:
```
npm install
npm run pack
npm run dist // this does the publish
npm run clean // removes node_modules so they get rebuilt
npm install // installs & builds node_modules
npm run pack // bundles app code using webpack to bundle.js
npm run dist // this does the publish
```
-



- Create tag in git repository
- Make release on github
- Write release notes (changelog)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"dist:draft": "electron-builder --publish=never",
"dist": "electron-builder",
"dist:win32bit": "electron-builder --ia32 --win --publish=never",
"clean": "rimraf app/node_modules node_modules package-lock.json",
"clean": "rimraf app/node_modules node_modules package-lock.json app/package-lock.json",
"env": "env",
"postinstall": "electron-builder install-app-deps",
"test": "echo \"tested\""
Expand Down

0 comments on commit b68fe1d

Please sign in to comment.