Skip to content

Commit 837508d

Browse files
committed
Lowercasing external call to require react.
1 parent 8c441a5 commit 837508d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/app.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-signature-pad",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"description": "A signature pad implementation for react.",
55
"main": "lib/app.js",
66
"scripts": {

webpack.production.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module.exports = {
1818
externals: {
1919
//don't bundle the 'react' npm package with our bundle.js
2020
//but get it from a global 'React' variable
21-
'react': 'React'
21+
'react': 'react'
2222
},
2323

2424
module: {

0 commit comments

Comments
 (0)