Updated deps and build commands

This commit is contained in:
Tobias Reich 2016-02-28 12:10:29 +01:00
parent 642d145509
commit 180b139773
2 changed files with 8 additions and 8 deletions

View File

@ -2,7 +2,7 @@
First you have to install the following dependencies:
- `node` [Node.js](http://nodejs.org) v0.10 or later
- `node` [Node.js](http://nodejs.org) v5.7.0 or later
- `npm` [Node Packaged Modules](https://www.npmjs.org)
After [installing Node.js](http://nodejs.org) you can use the included `npm` package manager to download all dependencies:
@ -12,10 +12,10 @@ After [installing Node.js](http://nodejs.org) you can use the included `npm` pac
### Build
The Gulpfile is located in `src/` and can be executed using the `npm start` command.
The Gulpfile is located in `src/` and can be executed using the `npm run compile` command.
### Watch for changes
While developing, you might want to use the following command to automatically build Lychee everytime you save a file:
npm run watch
npm start

View File

@ -10,8 +10,8 @@
"url": "https://github.com/electerious/Lychee.git"
},
"scripts": {
"start": "gulp",
"watch": "gulp watch"
"start": "gulp watch",
"compile": "gulp"
},
"devDependencies": {
"babel-preset-es2015": "^6.5.0",
@ -23,11 +23,11 @@
"gulp-concat": "^2.6.0",
"gulp-inject": "^3.0.0",
"gulp-load-plugins": "^1.2.0",
"gulp-minify-css": "^1.2.3",
"gulp-minify-css": "^1.2.4",
"gulp-rimraf": "^0.2.0",
"gulp-sass": "^2.2.0",
"gulp-uglify": "^1.5.2",
"jquery": "^2.2.0",
"gulp-uglify": "^1.5.3",
"jquery": "^2.2.1",
"mousetrap": "^1.5.3"
}
}