Skip to content

Commit 3af4b45

Browse files
committed
Update.
1 parent dee641c commit 3af4b45

File tree

8 files changed

+1339
-1140
lines changed

8 files changed

+1339
-1140
lines changed

.eslintrc

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
es6: true
66
node: true
77

8+
parserOptions:
9+
ecmaVersion: 2019
10+
811
rules:
912
array-bracket-spacing: [2, never]
1013
arrow-parens: [2, as-needed]

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/.nyc_output/
12
/build/
23
/coverage/
34
/local/

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ sudo: false
44

55
node_js:
66
- node
7+
- "12"
78
- "11"
89
- "10"
910
- "9"

dist/modulejs.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! modulejs v2.6.0 - https://larsjung.de/modulejs/ */
1+
/*! modulejs v2.7.0 - https://larsjung.de/modulejs/ */
22
(function webpackUniversalModuleDefinition(root, factory) {
33
if(typeof exports === 'object' && typeof module === 'object')
44
module.exports = factory();

dist/modulejs.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ghu.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ghu.task('clean', () => {
2424

2525
ghu.task('build:script', runtime => {
2626
return read(`${LIB}/${NAME}.js`)
27-
.then(webpack(webpack.cfg_umd(NAME, [LIB]), {showStats: false}))
27+
.then(webpack(webpack.cfg_umd(NAME, [LIB])))
2828
.then(wrap(runtime.commentJs))
2929
.then(write(`${DIST}/${NAME}.js`, {overwrite: true}))
3030
.then(write(`${BUILD}/${NAME}-${runtime.pkg.version}.js`, {overwrite: true}))

0 commit comments

Comments
 (0)