Skip to content

Commit

Permalink
release 0.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
liabru committed Nov 9, 2016
1 parent ded796c commit 422c1e4
Show file tree
Hide file tree
Showing 6 changed files with 173 additions and 165 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
<a name="0.11.1"></a>
## 0.11.1 (2016-11-09)


* added derequire to build ([ded796c](https://github.com/liabru/matter-js/commit/ded796c))



<a name="0.11.0"></a>
# 0.11.0 (2016-11-04)

Expand Down
4 changes: 2 additions & 2 deletions Gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ var serve = function(isTest) {
};

var build = function(options) {
var isDev = options.version.indexOf('-dev'),
var isDev = options.version.indexOf('-dev') !== -1,
filename = buildDirectory + (isDev ? '/matter-dev' : '/matter'),
dest = filename + '.js',
destMin = filename + '.min.js';
Expand All @@ -258,7 +258,7 @@ var build = function(options) {
.pipe(derequire())
.pipe(replace('@@VERSION@@', options.version));

if (isDev === -1) {
if (!isDev) {
compiled.pipe(preprocess({ context: { DEBUG: false } }));
}

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Matter",
"version": "0.11.0",
"version": "0.11.1",
"homepage": "https://github.com/liabru/matter-js",
"authors": [
"Liam Brummitt <liam@brm.io> (http://brm.io/)"
Expand Down
Loading

0 comments on commit 422c1e4

Please sign in to comment.