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 a18b4d0 commit d8e4d8f
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-react",
"version": "1.4.2",
"version": "1.4.3",
"homepage": "https://github.com/Rekord/rekord-react",
"authors": [
"Philip Diffenderfer <[email protected]>"
Expand Down
6 changes: 3 additions & 3 deletions build/rekord-react.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/* rekord-react 1.4.2 - A rekord binding to React - adding Rekord.Sync by Philip Diffenderfer */
/* rekord-react 1.4.3 - A rekord binding to React - adding Rekord.Sync 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', 'react'], function(Rekord, react) { // jshint ignore:line
define(['rekord', 'react'], function(Rekord, react) { // jshint ignore:line
return factory(root, Rekord, react);
});
}
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'), require('react')); // jshint ignore:line
module.exports = factory(global, require('rekord'), require('react')); // jshint ignore:line
}
else
{
Expand Down
4 changes: 2 additions & 2 deletions build/rekord-react.min.js

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

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

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rekord-react",
"version": "1.4.2",
"version": "1.4.3",
"description": "A rekord binding to React - adding Rekord.Sync",
"author": "Philip Diffenderfer",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 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', 'react'], function(Rekord, react) { // jshint ignore:line
define(['rekord', 'react'], function(Rekord, react) { // jshint ignore:line
return factory(root, Rekord, react);
});
}
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'), require('react')); // jshint ignore:line
module.exports = factory(global, require('rekord'), require('react')); // jshint ignore:line
}
else
{
Expand Down

0 comments on commit d8e4d8f

Please sign in to comment.