Update deps.

This commit is contained in:
Lars Jung 2015-12-11 23:13:00 +01:00
parent a6e6cf96d6
commit ab622d5cd2
3 changed files with 18 additions and 13 deletions

View file

@ -5,6 +5,9 @@
A modern HTTP web server index for Apache httpd, lighttpd, nginx and Cherokee.
For bug reports and feature requests please use [issues][github-issues].
There was a [security flaw][cve] in versions 0.22.0 - 0.24.1 that was fixed in
0.25.0. If you are still using one of these versions you are advised to
upgrade.
## Install
@ -21,8 +24,8 @@ In short you have to take the following two steps:
## Build
There are installation ready packages for the latest [releases][release] and
[dev builds][develop]. But to build **h5ai** yourself either *git-clone* or
*download* the repository. From within the root folder run the following
[dev builds][develop]. But to build **h5ai** yourself either `git clone` or
download the repository. From within the root folder run the following
commands to find a fresh zipball in folder `build` (tested on linux only,
requires [`node 4.0+`][node] to be installed).
@ -74,3 +77,5 @@ too. Exceptions are some [Material Design icons][material-design-icons] (CC BY 4
[license-img]: https://img.shields.io/badge/license-MIT-a0a060.svg?style=flat-square
[web-img]: https://img.shields.io/badge/web-larsjung.de/h5ai-a0a060.svg?style=flat-square
[github-img]: https://img.shields.io/badge/github-lrsjng/h5ai-a0a060.svg?style=flat-square
[cve]: https://larsjung.de/h5ai/cve-2015-3203.txt

10
ghu.js
View file

@ -1,10 +1,10 @@
import {resolve, join} from 'path';
import dateformat from 'dateformat';
import ghu from 'ghu';
import {
const {resolve, join} = require('path');
const dateformat = require('dateformat');
const {
default: ghu,
autoprefixer, cssmin, ife, includeit, jade, jszip,
less, mapfn, newerThan, read, remove, run, uglify, watch, wrap, write
} from 'ghu';
} = require('ghu');
const ROOT = resolve(__dirname);
const SRC = join(ROOT, 'src');

View file

@ -16,12 +16,12 @@
"build": "npm run -s ghu release"
},
"devDependencies": {
"babel-core": "6.1.2",
"babel-eslint": "4.1.3",
"babel-preset-es2015": "6.1.2",
"dateformat": "1.0.11",
"eslint": "1.7.3",
"ghu": "0.1.1"
"babel-core": "6.3.17",
"babel-eslint": "5.0.0-beta6",
"babel-preset-es2015": "6.3.13",
"dateformat": "1.0.12",
"eslint": "1.10.3",
"ghu": "0.2.2"
},
"engines": {
"node": ">=5.0.0"