2014-02-23 15:59:45 +00:00
|
|
|
### Dependencies
|
|
|
|
|
|
|
|
First you have to install the following dependencies:
|
|
|
|
|
2016-02-28 11:10:29 +00:00
|
|
|
- `node` [Node.js](http://nodejs.org) v5.7.0 or later
|
2014-04-01 20:03:43 +00:00
|
|
|
- `npm` [Node Packaged Modules](https://www.npmjs.org)
|
2014-02-23 15:59:45 +00:00
|
|
|
|
2016-01-24 13:57:22 +00:00
|
|
|
After [installing Node.js](http://nodejs.org) you can use the included `npm` package manager to download all dependencies:
|
2014-02-23 15:59:45 +00:00
|
|
|
|
2015-07-05 17:12:12 +00:00
|
|
|
cd src/
|
2015-07-06 15:07:46 +00:00
|
|
|
npm install
|
2014-07-18 20:15:37 +00:00
|
|
|
|
2014-02-23 15:59:45 +00:00
|
|
|
### Build
|
|
|
|
|
2016-02-28 11:10:29 +00:00
|
|
|
The Gulpfile is located in `src/` and can be executed using the `npm run compile` command.
|
2014-10-10 21:30:10 +00:00
|
|
|
|
2014-04-01 20:03:43 +00:00
|
|
|
### Watch for changes
|
|
|
|
|
2016-01-24 13:57:22 +00:00
|
|
|
While developing, you might want to use the following command to automatically build Lychee everytime you save a file:
|
2014-02-23 15:59:45 +00:00
|
|
|
|
2016-02-28 11:10:29 +00:00
|
|
|
npm start
|