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 03e7368 commit 1894b2e
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 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-debug",
"version": "1.4.2",
"version": "1.4.3",
"homepage": "https://github.com/Rekord/rekord-debug",
"authors": [
"Philip Diffenderfer <[email protected]>"
Expand Down
6 changes: 3 additions & 3 deletions build/rekord-debug.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/* rekord-debug 1.4.2 - A rekord binding to console - implementing Rekord.debug by Philip Diffenderfer */
/* rekord-debug 1.4.3 - A rekord binding to console - implementing Rekord.debug 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 Down
4 changes: 2 additions & 2 deletions build/rekord-debug.min.js

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

Loading

0 comments on commit 1894b2e

Please sign in to comment.