@shijiu/jsview 1.9.760 → 1.9.778
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/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 +150 -0
- package/tools/jsview-jsmap-serve.mjs +119 -0
- package/tools/jsview-post-build.js +58 -52
- package/tools/jsview-post-install.js +73 -23
- package/tools/jsview-run-android.js +39 -35
- 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
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "react-dom",
|
|
3
|
+
"version": "18.2.0",
|
|
4
|
+
"description": "React package for working with the DOM.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/facebook/react.git",
|
|
9
|
+
"directory": "packages/react-dom"
|
|
10
|
+
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"react"
|
|
13
|
+
],
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/facebook/react/issues"
|
|
17
|
+
},
|
|
18
|
+
"homepage": "https://reactjs.org/",
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"loose-envify": "^1.1.0",
|
|
21
|
+
"scheduler": "^0.23.0"
|
|
22
|
+
},
|
|
23
|
+
"peerDependencies": {
|
|
24
|
+
"react": "^18.2.0"
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"LICENSE",
|
|
28
|
+
"README.md",
|
|
29
|
+
"index.js",
|
|
30
|
+
"client.js",
|
|
31
|
+
"profiling.js",
|
|
32
|
+
"server.js",
|
|
33
|
+
"server.browser.js",
|
|
34
|
+
"server.node.js",
|
|
35
|
+
"test-utils.js",
|
|
36
|
+
"cjs/",
|
|
37
|
+
"umd/"
|
|
38
|
+
],
|
|
39
|
+
"exports": {
|
|
40
|
+
".": "./index.js",
|
|
41
|
+
"./client": "./client.js",
|
|
42
|
+
"./server": {
|
|
43
|
+
"deno": "./server.browser.js",
|
|
44
|
+
"worker": "./server.browser.js",
|
|
45
|
+
"browser": "./server.browser.js",
|
|
46
|
+
"default": "./server.node.js"
|
|
47
|
+
},
|
|
48
|
+
"./server.browser": "./server.browser.js",
|
|
49
|
+
"./server.node": "./server.node.js",
|
|
50
|
+
"./profiling": "./profiling.js",
|
|
51
|
+
"./test-utils": "./test-utils.js",
|
|
52
|
+
"./package.json": "./package.json"
|
|
53
|
+
},
|
|
54
|
+
"browser": {
|
|
55
|
+
"./server.js": "./server.browser.js"
|
|
56
|
+
},
|
|
57
|
+
"browserify": {
|
|
58
|
+
"transform": [
|
|
59
|
+
"loose-envify"
|
|
60
|
+
]
|
|
61
|
+
}
|
|
62
|
+
}
|
|
@@ -29,7 +29,10 @@ const publicUrlOrPath = getPublicUrlOrPath(
|
|
|
29
29
|
process.env.PUBLIC_URL
|
|
30
30
|
);
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
// JsView Modified >>>
|
|
33
|
+
// const buildPath = process.env.BUILD_PATH || 'build';
|
|
34
|
+
const buildPath = process.env.BUILD_PATH || 'dist';
|
|
35
|
+
// JsView Modified <<<
|
|
33
36
|
|
|
34
37
|
const moduleFileExtensions = [
|
|
35
38
|
'web.mjs',
|
|
@@ -222,8 +222,8 @@ module.exports = function (webpackEnv) {
|
|
|
222
222
|
// JsView Modified >>>
|
|
223
223
|
// ? 'static/js/[name].[contenthash:8].js'
|
|
224
224
|
// : isEnvDevelopment && 'static/js/bundle.js',
|
|
225
|
-
? 'js/
|
|
226
|
-
: isEnvDevelopment && 'js/
|
|
225
|
+
? 'js/main.jsv.[contenthash:8].js'
|
|
226
|
+
: isEnvDevelopment && 'js/main.jsv.js',
|
|
227
227
|
// JsView Modified <<<
|
|
228
228
|
// There are also additional JS chunk files if you use code splitting.
|
|
229
229
|
chunkFilename: isEnvProduction
|
|
@@ -231,7 +231,7 @@ module.exports = function (webpackEnv) {
|
|
|
231
231
|
// ? 'static/js/[name].[contenthash:8].chunk.js'
|
|
232
232
|
// : isEnvDevelopment && 'static/js/[name].chunk.js',
|
|
233
233
|
// assetModuleFilename: 'static/media/[name].[hash][ext]',
|
|
234
|
-
? 'js/
|
|
234
|
+
? 'js/chunk.jsv.[contenthash:8].js'
|
|
235
235
|
: isEnvDevelopment && 'js/[name].chunk.js',
|
|
236
236
|
assetModuleFilename: 'media/[name].[hash][ext]',
|
|
237
237
|
// JsView Modified <<<
|