Skip to content

Commit c521ecd

Browse files
committed
Update deps.
1 parent 44e53ab commit c521ecd

File tree

5 files changed

+6606
-14
lines changed

5 files changed

+6606
-14
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
# Changelog
22

33

4+
## v0.29.1 - *2019-01-20*
5+
6+
* replace `babel-preset-es2015` with `babel-preset-env`
7+
* update `eslint` to 5.14.1
8+
* update `ghu` to 0.12.0
9+
* update `jsdom` to 9.2.0
10+
* update `kjua` to 0.1.2
11+
* update `lolight` to 0.6.0
12+
* update `marked` to 0.6.1
13+
* update `normalize.css` to 8.0.1
14+
* update `scar` to 1.0.0
15+
16+
417
## v0.29.0 - *2016-08-12*
518

619
* back to cleaner visual experience

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ requires [`node 6.0+`][node] to be installed).
3232

3333
The MIT License (MIT)
3434

35-
Copyright (c) 2016 Lars Jung (https://larsjung.de)
35+
Copyright (c) 2019 Lars Jung (https://larsjung.de)
3636

3737
Permission is hereby granted, free of charge, to any person obtaining a copy
3838
of this software and associated documentation files (the "Software"), to deal

ghu.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const webpackCfg = include => ({
1818
loader: 'babel-loader',
1919
query: {
2020
cacheDirectory: true,
21-
presets: ['es2015']
21+
presets: ['babel-preset-env']
2222
}
2323
},
2424
{
@@ -108,7 +108,7 @@ ghu.task('build:copy', runtime => {
108108
read(`${SRC}: **, ! **/*.js, ! **/*.less, ! **/*.pug, ! **/conf/*.json`)
109109
.then(newerThan(mapper))
110110
.then(each(obj => {
111-
if (/index\.php$/.test(obj.source)) {
111+
if ((/index\.php$/).test(obj.source)) {
112112
obj.content = obj.content.replace('{{VERSION}}', runtime.pkg.version);
113113
}
114114
}))

0 commit comments

Comments
 (0)