Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 642 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 642 Bytes

customize

Create your own version of jmpress.js.

Setup

npm install
npm install webpack webpack-dev-server -g

Development

Start the development server with:

webpack-dev-server --colors --progress --devtool eval

Then open http://localhost:8080/webpack-dev-server/ in your browser.

Publish

Commit all changes.

git checkout gh-pages
git merge master
rm -rf assets
git rm assets -r
webpack --optimize-minimize --progress --colors
git add assets
git commit -m "Publish"
git checkout master

Finally git push the both branches.