-
Notifications
You must be signed in to change notification settings - Fork 16
Contribution Guide
Bill Erickson edited this page Jan 22, 2018
·
2 revisions
We are using gulp to compile the SASS to CSS, and minify CSS/JS. If your pull request will contain style or JavaScript changes, do the following in your dev environment:
- Run
npm install
to install our node modules - Run
gulp watch
to watch the assets for changes. Any change will automatically be compiled on save. - If you get an error ("gulp command not found"), you'll need to install gulp-cli. Run
npm install --global gulp-cli
, then trygulp-watch
again.