Skip to content

Commit

Permalink
Fixed for node/webpack
Browse files Browse the repository at this point in the history
  • Loading branch information
ClickerMonkey committed Nov 2, 2016
1 parent 3329b43 commit cdff78f
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rekord-session",
"version": "1.4.4",
"version": "1.4.5",
"homepage": "https://github.com/Rekord/rekord-session",
"authors": [
"Philip Diffenderfer <pdiffenderfer@gmail.com>"
Expand Down
8 changes: 4 additions & 4 deletions build/rekord-session.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/* rekord-session 1.4.4 - Adds mass changes & discards to Rekord by Philip Diffenderfer */
/* rekord-session 1.4.5 - Adds mass changes & discards to Rekord by Philip Diffenderfer */
// UMD (Universal Module Definition)
(function (root, factory)
{
if (typeof define === 'function' && define.amd) // jshint ignore:line
{
// AMD. Register as an anonymous module.
define(['Rekord'], function(Rekord) { // jshint ignore:line
define(['rekord'], function(Rekord) { // jshint ignore:line
return factory(root, Rekord);
});
}
Expand All @@ -14,7 +14,7 @@
// Node. Does not work with strict CommonJS, but
// only CommonJS-like environments that support module.exports,
// like Node.
module.exports = factory(global, require('Rekord')); // jshint ignore:line
module.exports = factory(global, require('rekord')); // jshint ignore:line
}
else
{
Expand All @@ -23,7 +23,7 @@
}
}(this, function(global, Rekord, undefined)
{

var Map = Rekord.Map;
var Model = Rekord.Model;
var Promise = Rekord.Promise;
Expand Down
4 changes: 2 additions & 2 deletions build/rekord-session.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/rekord-session.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rekord-session",
"version": "1.4.4",
"version": "1.4.5",
"description": "Adds mass changes & discards to Rekord",
"author": "Philip Diffenderfer",
"license": "MIT",
Expand Down
6 changes: 3 additions & 3 deletions src/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
if (typeof define === 'function' && define.amd) // jshint ignore:line
{
// AMD. Register as an anonymous module.
define(['Rekord'], function(Rekord) { // jshint ignore:line
define(['rekord'], function(Rekord) { // jshint ignore:line
return factory(root, Rekord);
});
}
Expand All @@ -13,7 +13,7 @@
// Node. Does not work with strict CommonJS, but
// only CommonJS-like environments that support module.exports,
// like Node.
module.exports = factory(global, require('Rekord')); // jshint ignore:line
module.exports = factory(global, require('rekord')); // jshint ignore:line
}
else
{
Expand All @@ -22,7 +22,7 @@
}
}(this, function(global, Rekord, undefined)
{

var Map = Rekord.Map;
var Model = Rekord.Model;
var Promise = Rekord.Promise;
Expand Down

0 comments on commit cdff78f

Please sign in to comment.