jrs-react 1.0.8 → 1.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.es.js +3 -10
- package/build/index.js +3 -10
- package/package.json +1 -1
- package/src/components/JRTest.jsx +2 -5
package/build/index.es.js
CHANGED
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
function getDefaultExportFromCjs (x) {
|
|
2
|
-
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
1
|
var react = {exports: {}};
|
|
6
2
|
|
|
7
3
|
var react_production = {};
|
|
@@ -2097,13 +2093,10 @@ function requireReact () {
|
|
|
2097
2093
|
return react.exports;
|
|
2098
2094
|
}
|
|
2099
2095
|
|
|
2100
|
-
|
|
2101
|
-
var React = /*@__PURE__*/getDefaultExportFromCjs(reactExports);
|
|
2096
|
+
requireReact();
|
|
2102
2097
|
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
return /*#__PURE__*/React.createElement("div", null, "JRTest");
|
|
2106
|
-
}
|
|
2098
|
+
function JRTest() {
|
|
2099
|
+
return 'JRTest';
|
|
2107
2100
|
}
|
|
2108
2101
|
|
|
2109
2102
|
export { JRTest };
|
package/build/index.js
CHANGED
|
@@ -2,10 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
function getDefaultExportFromCjs (x) {
|
|
6
|
-
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
5
|
var react = {exports: {}};
|
|
10
6
|
|
|
11
7
|
var react_production = {};
|
|
@@ -2101,13 +2097,10 @@ function requireReact () {
|
|
|
2101
2097
|
return react.exports;
|
|
2102
2098
|
}
|
|
2103
2099
|
|
|
2104
|
-
|
|
2105
|
-
var React = /*@__PURE__*/getDefaultExportFromCjs(reactExports);
|
|
2100
|
+
requireReact();
|
|
2106
2101
|
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
return /*#__PURE__*/React.createElement("div", null, "JRTest");
|
|
2110
|
-
}
|
|
2102
|
+
function JRTest() {
|
|
2103
|
+
return 'JRTest';
|
|
2111
2104
|
}
|
|
2112
2105
|
|
|
2113
2106
|
exports.JRTest = JRTest;
|
package/package.json
CHANGED