Skip to content

Commit

Permalink
Update deps.
Browse files Browse the repository at this point in the history
  • Loading branch information
lrsjng committed Feb 20, 2019
1 parent 44e53ab commit c521ecd
Show file tree
Hide file tree
Showing 5 changed files with 6,606 additions and 14 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,19 @@
# 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*

* back to cleaner visual experience
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -32,7 +32,7 @@ requires [`node 6.0+`][node] to be installed).

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
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions ghu.js
Expand Up @@ -18,7 +18,7 @@ const webpackCfg = include => ({
loader: 'babel-loader',
query: {
cacheDirectory: true,
presets: ['es2015']
presets: ['babel-preset-env']
}
},
{
Expand Down Expand Up @@ -108,7 +108,7 @@ ghu.task('build:copy', runtime => {
read(`${SRC}: **, ! **/*.js, ! **/*.less, ! **/*.pug, ! **/conf/*.json`)
.then(newerThan(mapper))
.then(each(obj => {
if (/index\.php$/.test(obj.source)) {
if ((/index\.php$/).test(obj.source)) {
obj.content = obj.content.replace('{{VERSION}}', runtime.pkg.version);
}
}))
Expand Down

0 comments on commit c521ecd

Please sign in to comment.