Skip to content

Commit b5e60e7

Browse files
committed
Processed some review comments
1 parent 1547199 commit b5e60e7

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ script: CI=true yarn test:travis
55
after_success:
66
- cat ./coverage/lcov.info|./node_modules/coveralls/bin/coveralls.js
77
node_js:
8-
- 9.3
8+
- 10
99
addons:
1010
apt:
1111
packages:

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Caveat: Jest `toEqual` matcher might no longer play nicely with your class insta
5353

5454
# 4.1.1
5555

56-
* Import `default` from MobX will no longer throw, but only warn instead. This fixes some issues with tools that reflect on the `default` export of a module.
56+
* Import `default` from MobX will no longer throw, but only warn instead. This fixes some issues with tools that reflect on the `default` export of a module
5757
* Disposing a spy listener inside a spy handler no longer causes an exception. Fixes [#1459](https://github.com/mobxjs/mobx/issues/1459) through [#1460](https://github.com/mobxjs/mobx/pull/1460) by [farwayer](https://github.com/farwayer)
5858
* Added a missing `runInAction` overload in the flow typings. [#1451](https://github.com/mobxjs/mobx/pull/1451) by [AMilassin](https://github.com/mobxjs/mobx/issues?q=is%3Apr+author%3AAMilassin)
5959
* Improved the typings of `decorate`. See [#1450](https://github.com/mobxjs/mobx/pull/1450) by [makepost](https://github.com/mobxjs/mobx/issues?q=is%3Apr+author%3Amakepost)

scripts/build.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ function generateBundledModule(inputFile, outputFile, format) {
6262
bundle.write({
6363
dest: outputFile,
6464
format,
65-
banner: "/** MobX - (c) Michel Weststrate 2015, 2016 - MIT Licensed */",
65+
banner: "/** MobX - (c) Michel Weststrate 2015 - 2018 - MIT Licensed */",
6666
exports: "named"
6767
})
6868
)
@@ -77,11 +77,11 @@ function generateMinified() {
7777
console.log("Generating mobx.min.js and mobx.umd.min.js")
7878
exec(`NODE_ENV=production ${binFolder}/envify lib/mobx.js > lib/mobx.prod.js`)
7979
exec(
80-
`${binFolder}/uglifyjs --toplevel -m -c warnings=false --preamble "/** MobX - (c) Michel Weststrate 2015, 2016 - MIT Licensed */" --source-map -o lib/mobx.min.js lib/mobx.prod.js`
80+
`${binFolder}/uglifyjs --toplevel -m -c warnings=false --preamble "/** MobX - (c) Michel Weststrate 2015 - 2018 - MIT Licensed */" --source-map -o lib/mobx.min.js lib/mobx.prod.js`
8181
)
8282
exec(`NODE_ENV=production ${binFolder}/envify lib/mobx.umd.js > lib/mobx.prod.umd.js`)
8383
exec(
84-
`${binFolder}/uglifyjs --toplevel -m -c warnings=false --preamble "/** MobX - (c) Michel Weststrate 2015, 2016 - MIT Licensed */" --source-map -o lib/mobx.umd.min.js lib/mobx.prod.umd.js`
84+
`${binFolder}/uglifyjs --toplevel -m -c warnings=false --preamble "/** MobX - (c) Michel Weststrate 2015 - 2018 - MIT Licensed */" --source-map -o lib/mobx.umd.min.js lib/mobx.prod.umd.js`
8585
)
8686
exec(`rm lib/mobx.prod.js lib/mobx.prod.umd.js`)
8787
}

0 commit comments

Comments
 (0)