@shijiu/jsview 1.9.760 → 1.9.779
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/dom/bin/jsview-browser-debug-dom.min.js +1 -1
- package/dom/bin/jsview-dom.min.js +1 -1
- package/dom/bin/jsview-engine-js-browser.min.js +1 -1
- package/dom/jsv-dom.js +3 -1
- package/loader/loader.js +3 -3
- package/package.json +7 -8
- package/patches/node_modules/@vue/compiler-sfc/dist/compiler-sfc.cjs.js +3085 -2968
- package/patches/node_modules/@vue/compiler-sfc/package.json +6 -6
- package/patches/node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js +8123 -8038
- package/patches/node_modules/@vue/runtime-core/package.json +3 -3
- package/patches/node_modules/@vue/runtime-dom/dist/runtime-dom.esm-bundler.js +1681 -1663
- package/patches/node_modules/@vue/runtime-dom/package.json +3 -3
- package/patches/node_modules/react-dom/cjs/react-dom.development.js +29868 -0
- package/patches/node_modules/react-dom/cjs/react-dom.production.min.js +323 -0
- package/patches/node_modules/react-dom/package.json +62 -0
- package/patches/node_modules/react-scripts/config/paths.js +4 -1
- package/patches/node_modules/react-scripts/config/webpack.config.js +3 -3
- package/patches/node_modules/vite/dist/node/chunks/{dep-0fc8e132.js → dep-ed9cb113.js} +46837 -46866
- package/patches/node_modules/vite/dist/node/jsview-vite-extension.js +155 -0
- package/patches/node_modules/vite/package.json +48 -39
- package/patches/node_modules/vue-router/dist/vue-router.mjs +22 -5
- package/patches/node_modules/vue-router/package.json +12 -12
- package/tools/jsview-common.js +169 -0
- package/tools/jsview-jsmap-serve.mjs +127 -0
- package/tools/jsview-post-build.js +63 -55
- package/tools/jsview-post-install.js +92 -42
- package/tools/jsview-run-android.js +46 -38
- package/patches/node_modules/vite/dist/node/jsview-react.vite.config.js +0 -7
- package/patches/node_modules/vite/dist/node/jsview-vue.vite.config.js +0 -7
- package/patches/node_modules/vite/dist/node/jsview.vite.config.js +0 -64
- package/tools/common.js +0 -63
- package/tools/jsview-jsmap-serve.js +0 -105
- package/tools/jsview-post-install-react.js +0 -15
- package/tools/jsview-post-install-vue.js +0 -20
package/dom/jsv-dom.js
CHANGED
package/loader/loader.js
CHANGED
|
@@ -47,9 +47,9 @@ async function selectJsViewRuntime(js_sub_path, input_designed_map, app_name) {
|
|
|
47
47
|
window.JsView.notifyAppName(app_name);
|
|
48
48
|
}
|
|
49
49
|
initHeaderScriptLoader(js_sub_path);
|
|
50
|
-
|
|
51
|
-
sJsViewForgeAppDefine =
|
|
52
|
-
window.JsView.ForgeExt =
|
|
50
|
+
let { domNative } = await import("../dom/jsv-dom.js");
|
|
51
|
+
sJsViewForgeAppDefine = domNative.JsViewForgeApp;
|
|
52
|
+
window.JsView.ForgeExt = domNative.ForgeExtension;
|
|
53
53
|
window.JsView.Dom.JsSubPath = js_sub_path;
|
|
54
54
|
} else {
|
|
55
55
|
// 在PC环境下没有处理加载EngineJs, 所以在此加载一下
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shijiu/jsview",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.779",
|
|
4
4
|
"bin": {
|
|
5
5
|
"jsview-post-build": "./tools/jsview-post-build.js",
|
|
6
6
|
"jsview-post-install": "./tools/jsview-post-install.js"
|
|
@@ -15,14 +15,13 @@
|
|
|
15
15
|
"jsview-dom",
|
|
16
16
|
"jsview-docs"
|
|
17
17
|
],
|
|
18
|
-
"engines": {
|
|
19
|
-
"node": ">=16.0.0"
|
|
20
|
-
},
|
|
21
18
|
"dependencies": {
|
|
22
|
-
"
|
|
23
|
-
"
|
|
19
|
+
"gifuct-js": "2.1.2",
|
|
20
|
+
"postcss-import-sync": "7.1.4",
|
|
21
|
+
"postcss-js": "4.0.0"
|
|
24
22
|
},
|
|
25
|
-
"devDependencies": {
|
|
26
|
-
|
|
23
|
+
"devDependencies": {},
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=16.0.0"
|
|
27
26
|
}
|
|
28
27
|
}
|