lychee/docs/Build.md

22 lines
584 B
Markdown
Raw Normal View History

2014-02-23 15:59:45 +00:00
### Dependencies
First you have to install the following dependencies:
2014-04-01 20:03:43 +00:00
- `node` [Node.js](http://nodejs.org) v0.10 or later
- `npm` [Node Packaged Modules](https://www.npmjs.org)
2014-02-23 15:59:45 +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
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
The Gulpfile is located in `src/` and can be executed using the `npm start` command.
2014-10-10 21:30:10 +00:00
2014-04-01 20:03:43 +00:00
### Watch for changes
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
npm run watch