Skip to content
This repository was archived by the owner on Nov 20, 2021. It is now read-only.

Commit b37270d

Browse files
Add changes from build output
1 parent a67b836 commit b37270d

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

react-tagsinput.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
(function (global, factory) {
22
if (typeof define === "function" && define.amd) {
3-
define('ReactTagsInput', ['module', 'exports', 'react'], factory);
3+
define('ReactTagsInput', ['module', 'exports', 'react', 'prop-types'], factory);
44
} else if (typeof exports !== "undefined") {
5-
factory(module, exports, require('react'));
5+
factory(module, exports, require('react'), require('prop-types'));
66
} else {
77
var mod = {
88
exports: {}
99
};
10-
factory(mod, mod.exports, global.React);
10+
factory(mod, mod.exports, global.React, global.propTypes);
1111
global.ReactTagsInput = mod.exports;
1212
}
13-
})(this, function (module, exports, _react) {
13+
})(this, function (module, exports, _react, _propTypes) {
1414
'use strict';
1515

1616
Object.defineProperty(exports, "__esModule", {
@@ -19,6 +19,8 @@
1919

2020
var _react2 = _interopRequireDefault(_react);
2121

22+
var _propTypes2 = _interopRequireDefault(_propTypes);
23+
2224
function _interopRequireDefault(obj) {
2325
return obj && obj.__esModule ? obj : {
2426
default: obj

0 commit comments

Comments
 (0)