Skip to content

Commit

Permalink
Fixing renamed constructor, fixes #11
Browse files Browse the repository at this point in the history
  • Loading branch information
avoidwork committed May 31, 2015
1 parent 9a00c37 commit 7fcef6a
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ module.exports = function (grunt) {
sourceMap: true,
sourceMapIncludeSources: true,
mangle: {
except: ["Tuple"]
except: ["Haro"]
}
},
target: {
Expand Down
4 changes: 2 additions & 2 deletions lib/haro.es6.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @copyright 2015
* @license BSD-3-Clause
* @link http://avoidwork.github.io/haro
* @version 1.0.6
* @version 1.0.7
*/
( function ( global ) {
const Promise = global.Promise || require( "es6-promise" ).Promise;
Expand Down Expand Up @@ -310,7 +310,7 @@ function factory ( data=null, config={} ) {
return new Haro( data, config );
}

factory.version = "1.0.6";
factory.version = "1.0.7";

// Node, AMD & window supported
if ( typeof exports !== "undefined" ) {
Expand Down
4 changes: 2 additions & 2 deletions lib/haro.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @copyright 2015
* @license BSD-3-Clause
* @link http://avoidwork.github.io/haro
* @version 1.0.6
* @version 1.0.7
*/
"use strict";

Expand Down Expand Up @@ -359,7 +359,7 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
return new Haro(data, config);
}

factory.version = "1.0.6";
factory.version = "1.0.7";

// Node, AMD & window supported
if (typeof exports !== "undefined") {
Expand Down
2 changes: 1 addition & 1 deletion lib/haro.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 7fcef6a

Please sign in to comment.