Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PCHR-4049: Update CODING.MD #122

Merged
merged 1 commit into from
Aug 7, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions CODING.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,21 @@ First of all you need [NodeJS](https://nodejs.org/). Please be aware that curren

Once you have NodeJS installed, run

```
npm install -g gulp
```sh
npm install
```

Once you have the tools, you can run `gulp`. This will monitor the SCSS files and automatically recompile whenever they change.
Once you have the tools, you can run `npx gulp watch`. This will monitor the SCSS files and automatically recompile whenever they are changed.

```sh
# npx command ensures you run a local repository Gulp and not the global one
npx gulp watch
```
gulp

If you would like to just compile files without watching, simply run `npx gulp`.

```sh
npx gulp
```

## Guidelines for `custom-civicrm.css`
Expand Down