Local Dev
Install
To do local development, you need to first clone/fork the repo from:
https://github.com/jibeinc/juice
Then you'll need to install all the dependencies with:
npm i
Run Examples
To run examples, you'll need two terminal windows open and you'll need to run one of these commands in each:
npm run examples
, run the examples:
npm run watch
, run the watcher so your changes are picked up and reloaded
Run Builds
To run the production build you can run:
npm run build
To run a dev build, which will not strip out debuggers, you should run:
npm run build-dev
(prod build w/out minification and w/verbose logging)
Updated less than a minute ago