Update deps.

This commit is contained in:
Lars Jung 2019-02-20 22:06:03 +01:00
parent 44e53ab213
commit c521ecd055
5 changed files with 6606 additions and 14 deletions

View file

@ -1,6 +1,19 @@
# Changelog # Changelog
## v0.29.1 - *2019-01-20*
* replace `babel-preset-es2015` with `babel-preset-env`
* update `eslint` to 5.14.1
* update `ghu` to 0.12.0
* update `jsdom` to 9.2.0
* update `kjua` to 0.1.2
* update `lolight` to 0.6.0
* update `marked` to 0.6.1
* update `normalize.css` to 8.0.1
* update `scar` to 1.0.0
## v0.29.0 - *2016-08-12* ## v0.29.0 - *2016-08-12*
* back to cleaner visual experience * back to cleaner visual experience

View file

@ -32,7 +32,7 @@ requires [`node 6.0+`][node] to be installed).
The MIT License (MIT) The MIT License (MIT)
Copyright (c) 2016 Lars Jung (https://larsjung.de) Copyright (c) 2019 Lars Jung (https://larsjung.de)
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

4
ghu.js
View file

@ -18,7 +18,7 @@ const webpackCfg = include => ({
loader: 'babel-loader', loader: 'babel-loader',
query: { query: {
cacheDirectory: true, cacheDirectory: true,
presets: ['es2015'] presets: ['babel-preset-env']
} }
}, },
{ {
@ -108,7 +108,7 @@ ghu.task('build:copy', runtime => {
read(`${SRC}: **, ! **/*.js, ! **/*.less, ! **/*.pug, ! **/conf/*.json`) read(`${SRC}: **, ! **/*.js, ! **/*.less, ! **/*.pug, ! **/conf/*.json`)
.then(newerThan(mapper)) .then(newerThan(mapper))
.then(each(obj => { .then(each(obj => {
if (/index\.php$/.test(obj.source)) { if ((/index\.php$/).test(obj.source)) {
obj.content = obj.content.replace('{{VERSION}}', runtime.pkg.version); obj.content = obj.content.replace('{{VERSION}}', runtime.pkg.version);
} }
})) }))

6579
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
{ {
"name": "h5ai", "name": "h5ai",
"version": "0.29.0", "version": "0.29.1",
"description": "Modern HTTP web server index.", "description": "Modern HTTP web server index.",
"homepage": "https://larsjung.de/h5ai/", "homepage": "https://larsjung.de/h5ai/",
"bugs": "https://github.com/lrsjng/h5ai/issues", "bugs": "https://github.com/lrsjng/h5ai/issues",
@ -15,18 +15,18 @@
}, },
"devDependencies": { "devDependencies": {
"babel-loader": "6.2.4", "babel-loader": "6.2.4",
"babel-preset-es2015": "6.13.2", "babel-preset-env": "1.7.0",
"eslint": "3.2.2", "eslint": "5.14.1",
"ghu": "0.11.0", "ghu": "0.12.0",
"jsdom": "9.4.2", "jsdom": "9.2.0",
"kjua": "0.1.1", "kjua": "0.1.2",
"lolight": "0.3.0", "lolight": "0.6.0",
"marked": "0.3.6", "marked": "0.6.1",
"normalize.css": "4.2.0", "normalize.css": "8.0.1",
"null-loader": "0.1.1", "null-loader": "0.1.1",
"scar": "0.17.0" "scar": "1.0.0"
}, },
"engines": { "engines": {
"node": ">=6.0.0" "node": ">=10.0.0"
} }
} }