@memberjunction/react-runtime 5.15.0 → 5.17.0
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/.turbo/turbo-build.log +12 -12
- package/CHANGELOG.md +26 -0
- package/dist/324.runtime.umd.js +543 -76
- package/dist/490.runtime.umd.js +6622 -1
- package/dist/runtime.umd.js +101375 -2
- package/package.json +6 -6
- package/webpack.umd.config.cjs +4 -1
- package/dist/runtime.umd.js.LICENSE.txt +0 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memberjunction/react-runtime",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.17.0",
|
|
4
4
|
"description": "Platform-agnostic React component runtime for MemberJunction. Provides core compilation, registry, and execution capabilities for React components in any JavaScript environment.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
},
|
|
30
30
|
"homepage": "https://github.com/MemberJunction/MJ#readme",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@memberjunction/core": "5.
|
|
33
|
-
"@memberjunction/global": "5.
|
|
34
|
-
"@memberjunction/interactive-component-types": "5.
|
|
35
|
-
"@memberjunction/core-entities": "5.
|
|
36
|
-
"@memberjunction/graphql-dataprovider": "5.
|
|
32
|
+
"@memberjunction/core": "5.17.0",
|
|
33
|
+
"@memberjunction/global": "5.17.0",
|
|
34
|
+
"@memberjunction/interactive-component-types": "5.17.0",
|
|
35
|
+
"@memberjunction/core-entities": "5.17.0",
|
|
36
|
+
"@memberjunction/graphql-dataprovider": "5.17.0",
|
|
37
37
|
"@babel/standalone": "^7.29.1",
|
|
38
38
|
"rxjs": "^7.8.2"
|
|
39
39
|
},
|
package/webpack.umd.config.cjs
CHANGED
|
@@ -70,7 +70,10 @@ module.exports = {
|
|
|
70
70
|
}
|
|
71
71
|
},
|
|
72
72
|
optimization: {
|
|
73
|
-
minimize:
|
|
73
|
+
// minimize disabled: the UMD bundle is only used in test harness (Playwright)
|
|
74
|
+
// contexts, and terser's name mangling causes variable collisions between
|
|
75
|
+
// ClassFactory and entity classes, breaking bundle initialization.
|
|
76
|
+
minimize: false
|
|
74
77
|
},
|
|
75
78
|
performance: {
|
|
76
79
|
hints: false,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* @license
|
|
5
|
-
* Lodash <https://lodash.com/>
|
|
6
|
-
* Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
|
|
7
|
-
* Released under MIT license <https://lodash.com/license>
|
|
8
|
-
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
|
|
9
|
-
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
|
10
|
-
*/
|