Skip to content

Commit

Permalink
Published version 3.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
mweststrate committed May 31, 2017
1 parent 8824506 commit 021cdbb
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 3.1.11

* Using rollup as bundler, instead of custom hacked build scripts, by @rossipedia, see #1023

# 3.1.10

* Fixed flow typings for `when`, by @jamsea
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mobx",
"version": "3.1.10",
"version": "3.1.11",
"description": "Simple, scalable state management.",
"main": "lib/mobx.js",
"umd:main": "lib/mobx.umd.js",
Expand Down Expand Up @@ -85,4 +85,4 @@
"state management",
"data flow"
]
}
}
6 changes: 5 additions & 1 deletion scripts/publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@
/* Run this file from the root of the repository */
module.exports = function(shell, npm, git) {
// build
npm("run", "small-build")

// FIXME: rollup dies when not spawning from terminal...
// npm("run", "small-build")
if (shell.prompt("Please run 'npm run small-build' first. Done?", "Y") !== "Y")
shell.exit(1)

var pkg = JSON.parse(shell.read('package.json'));

Expand Down

0 comments on commit 021cdbb

Please sign in to comment.