Skip to content
This repository has been archived by the owner on Mar 14, 2019. It is now read-only.

Make it easier to contribute #53

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
.idea/
npm-debug.log*

# Windows image file caches
Thumbs.db
ehthumbs.db
Expand Down
17 changes: 17 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Development

## Dependencies

Run the following to install all dependencies:

```bash
$ npm install
```

## Build

Two steps are necessary to build the project entirely:

```bash
$ npm run build
```
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,8 @@
"less-plugin-autoprefix": "^1.5.1",
"requirejs": "^2.1.22",
"run-sequence": "^1.1.2"
},
"scripts": {
"build": "gulp less && gulp build"
}
}