Skip to content

Commit 57373a2

Browse files
object-kazmaslow
andcommitted
fix: error of process is not defined (labring#146)
* docs: update docs; * fix: error on opening app-console Co-authored-by: maslow <[email protected]>
1 parent 2673940 commit 57373a2

File tree

9 files changed

+141
-44
lines changed

9 files changed

+141
-44
lines changed

packages/web/.env.development

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# just a flag
22
ENV = 'development'
33

4-
VUE_APP_APP_CONSOLE_URI = 'http://localhost:9528/app-console'
4+
VITE_APP_CONSOLE_URI = 'http://localhost:9528/app-console'

packages/web/.env.production

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# just a flag
22
ENV = 'production'
33

4-
VUE_APP_APP_CONSOLE_URI = '/app-console'
4+
VITE_APP_CONSOLE_URI = '/app-console'

packages/web/.vscode/extensions.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
"vue.volar",
99
"dbaeumer.vscode-eslint"
1010
]
11-
}
11+
}

packages/web/.vscode/settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@
2424
"i18n.global.t('${key}')"
2525
]
2626
}]
27-
}
27+
}

packages/web/env.d.ts

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/// <reference types="vite/client" />
2+
3+
interface ImportMetaEnv {
4+
readonly VITE_APP_CONSOLE_URI: string
5+
// 更多环境变量...
6+
}
7+
8+
interface ImportMeta {
9+
readonly env: ImportMetaEnv
10+
}

packages/web/src/api/application.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ export async function initApplicationWithTemplate(appid, template_id) {
176176
*/
177177
export async function openAppConsole(app) {
178178
const base_url = getCurrentBaseURL()
179-
const console_uri = process.env.VUE_APP_APP_CONSOLE_URI
179+
const console_uri = import.meta.env.VITE_APP_CONSOLE_URI
180180
const back_url = encodeURIComponent(window.location.href)
181181

182182
let app_console_url = `${console_uri}/#/app/${app.appid}/dashboard/index?$back_url=${back_url}`

packages/web/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@
2424
}
2525
},
2626
"exclude": ["dist", "node_modules"]
27-
}
27+
}

packages/web/vite.config.ts

+25-25
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
/// <reference types="vitest" />
22

3-
import path from "path";
4-
import { defineConfig } from "vite";
5-
import Vue from "@vitejs/plugin-vue";
6-
import Pages from "vite-plugin-pages";
7-
import Layouts from "vite-plugin-vue-layouts";
8-
import Components from "unplugin-vue-components/vite";
9-
import AutoImport from "unplugin-auto-import/vite";
10-
import Unocss from "unocss/vite";
11-
import { ElementPlusResolver } from "unplugin-vue-components/resolvers";
12-
import vueI18n from "@intlify/vite-plugin-vue-i18n";
3+
import path from 'path'
4+
import { defineConfig } from 'vite'
5+
import Vue from '@vitejs/plugin-vue'
6+
import Pages from 'vite-plugin-pages'
7+
import Layouts from 'vite-plugin-vue-layouts'
8+
import Components from 'unplugin-vue-components/vite'
9+
import AutoImport from 'unplugin-auto-import/vite'
10+
import Unocss from 'unocss/vite'
11+
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
12+
import vueI18n from '@intlify/vite-plugin-vue-i18n'
1313

1414
// const port = 9527 // dev port
1515

1616
export default defineConfig({
1717
resolve: {
1818
alias: {
19-
"~/": `${path.resolve(__dirname, "src")}/`,
19+
'~/': `${path.resolve(__dirname, 'src')}/`,
2020
},
2121
},
2222
plugins: [
@@ -28,19 +28,19 @@ export default defineConfig({
2828
// compositionOnly: false,
2929

3030
// you need to set i18n resource including paths !
31-
include: path.resolve(__dirname, "./locales/**"),
31+
include: path.resolve(__dirname, './locales/**'),
3232
compositionOnly: false,
3333

34-
defaultSFCLang: "yml",
34+
defaultSFCLang: 'yml',
3535
}),
3636

3737
// https://github.com/hannoeru/vite-plugin-pages
3838
Pages({
3939
dirs: [
40-
{ dir: path.resolve(__dirname, "./src/pages"), baseRoute: "" },
41-
{ dir: path.resolve(__dirname, "./src/pages/account"), baseRoute: "" },
40+
{ dir: path.resolve(__dirname, './src/pages'), baseRoute: '' },
41+
{ dir: path.resolve(__dirname, './src/pages/account'), baseRoute: '' },
4242
],
43-
exclude: ["**/components/**.vue"],
43+
exclude: ['**/components/**.vue'],
4444
// extensions: ['.vue', '.js', '.ts'],
4545
// extendRoute(route: any) {
4646
// if (route.name === 'about')
@@ -59,13 +59,13 @@ export default defineConfig({
5959
}),
6060

6161
Layouts({
62-
layoutsDirs: path.resolve(__dirname, "./src/layout"),
63-
defaultLayout: "default",
62+
layoutsDirs: path.resolve(__dirname, './src/layout'),
63+
defaultLayout: 'default',
6464
}),
6565

6666
// https://github.com/antfu/unplugin-auto-import
6767
AutoImport({
68-
imports: ["vue", "vue/macros", "vue-router", "@vueuse/core", "vue-i18n"],
68+
imports: ['vue', 'vue/macros', 'vue-router', '@vueuse/core', 'vue-i18n'],
6969
dts: true,
7070
resolvers: [ElementPlusResolver()],
7171
}),
@@ -83,21 +83,21 @@ export default defineConfig({
8383

8484
// https://github.com/vitest-dev/vitest
8585
test: {
86-
environment: "jsdom",
86+
environment: 'jsdom',
8787
},
8888

8989
// server
9090
server: {
9191
// port,
9292
proxy: {
93-
"/sys-api": {
94-
target: "http://console.127-0-0-1.nip.io:8000/",
93+
'/sys-api': {
94+
target: 'http://console.127-0-0-1.nip.io:8000/',
9595
changeOrigin: true,
9696
},
97-
"/sys-extension-api": {
98-
target: "http://console.127-0-0-1.nip.io:8000/",
97+
'/sys-extension-api': {
98+
target: 'http://console.127-0-0-1.nip.io:8000/',
9999
changeOrigin: true,
100100
},
101101
},
102102
},
103-
});
103+
})

packages/web/yarn.lock

+100-13
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
execa "^5.1.1"
7575
find-up "^5.0.0"
7676

77-
"@antfu/utils@^0.5.0", "@antfu/utils@^0.5.1":
77+
"@antfu/utils@^0.5.0", "@antfu/utils@^0.5.1", "@antfu/utils@^0.5.2":
7878
version "0.5.2"
7979
resolved "https://registry.npmmirror.com/@antfu/utils/-/utils-0.5.2.tgz#8c2d931ff927be0ebe740169874a3d4004ab414b"
8080
integrity sha512-CQkeV+oJxUazwjlHD0/3ZD08QWKuGQkhnrKo3e6ly5pd48VUpXbb77q0xMU4+vc2CkJnDS02Eq/M9ugyX20XZA==
@@ -300,7 +300,7 @@
300300
resolved "https://registry.npmmirror.com/@sxzz/popperjs-es/-/popperjs-es-2.11.7.tgz#a7f69e3665d3da9b115f9e71671dae1b97e13671"
301301
integrity sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==
302302

303-
"@rollup/pluginutils@^4.1.0", "@rollup/pluginutils@^4.2.0", "@rollup/pluginutils@^4.2.1":
303+
"@rollup/pluginutils@^4.1.0", "@rollup/pluginutils@^4.2.1":
304304
version "4.2.1"
305305
resolved "https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz#e6c6c3aba0744edce3fb2074922d3776c0af2a6d"
306306
integrity sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==
@@ -1625,6 +1625,11 @@ escape-string-regexp@^4.0.0:
16251625
resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
16261626
integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
16271627

1628+
escape-string-regexp@^5.0.0:
1629+
version "5.0.0"
1630+
resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz#4683126b500b61762f2dbebace1806e8be31b1c8"
1631+
integrity sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==
1632+
16281633
escodegen@^2.0.0:
16291634
version "2.0.0"
16301635
resolved "https://registry.npmmirror.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd"
@@ -2123,6 +2128,13 @@ get-symbol-description@^1.0.0:
21232128
call-bind "^1.0.2"
21242129
get-intrinsic "^1.1.1"
21252130

2131+
get-user-locale@^1.4.0:
2132+
version "1.4.0"
2133+
resolved "https://registry.npmmirror.com/get-user-locale/-/get-user-locale-1.4.0.tgz#a2c4b5da46feec9f03c9b07d197b1620490a5370"
2134+
integrity sha512-gQo03lP1OArHLKlnoglqrGGl7b04u2EP9Xutmp72cMdtrrSD7ZgIsCsUKZynYWLDkVJW33Cj3pliP7uP0UonHQ==
2135+
dependencies:
2136+
lodash.once "^4.1.1"
2137+
21262138
glob-parent@^5.1.2, glob-parent@~5.1.2:
21272139
version "5.1.2"
21282140
resolved "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
@@ -2618,6 +2630,11 @@ jsonc-eslint-parser@^2.0.4, jsonc-eslint-parser@^2.1.0:
26182630
espree "^9.0.0"
26192631
semver "^7.3.5"
26202632

2633+
jsonc-parser@^3.0.0:
2634+
version "3.0.0"
2635+
resolved "https://registry.npmmirror.com/jsonc-parser/-/jsonc-parser-3.0.0.tgz#abdd785701c7e7eaca8a9ec8cf070ca51a745a22"
2636+
integrity sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==
2637+
26212638
"jsx-ast-utils@^2.4.1 || ^3.0.0":
26222639
version "3.3.0"
26232640
resolved "https://registry.npmmirror.com/jsx-ast-utils/-/jsx-ast-utils-3.3.0.tgz#e624f259143b9062c92b6413ff92a164c80d3ccb"
@@ -2707,6 +2724,11 @@ lodash.merge@^4.6.2:
27072724
resolved "https://registry.npmmirror.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
27082725
integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
27092726

2727+
lodash.once@^4.1.1:
2728+
version "4.1.1"
2729+
resolved "https://registry.npmmirror.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac"
2730+
integrity sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==
2731+
27102732
27112733
version "4.3.2"
27122734
resolved "https://registry.npmmirror.com/lodash.set/-/lodash.set-4.3.2.tgz#d8757b1da807dde24816b0d6a84bea1a76230b23"
@@ -2850,6 +2872,14 @@ minimist@^1.2.0, minimist@^1.2.6:
28502872
resolved "https://registry.npmmirror.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44"
28512873
integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==
28522874

2875+
mlly@^0.5.2, mlly@^0.5.3:
2876+
version "0.5.3"
2877+
resolved "https://registry.npmmirror.com/mlly/-/mlly-0.5.3.tgz#8a613b6273886490a5f462ce18fa486492cf053b"
2878+
integrity sha512-im69tuLD9EJh9fc9TZRpJEFvsBcGMez7glUCWDcHWWCKzhvPmNvyaYjp/+h0qJJN/Xovrs//GzGjOOKmFw4Gog==
2879+
dependencies:
2880+
pathe "^0.2.0"
2881+
pkg-types "^0.3.2"
2882+
28532883
mrmime@^1.0.0:
28542884
version "1.0.1"
28552885
resolved "https://registry.npmmirror.com/mrmime/-/mrmime-1.0.1.tgz#5f90c825fad4bdd41dc914eff5d1a8cfdaf24f27"
@@ -3161,6 +3191,11 @@ path-type@^4.0.0:
31613191
resolved "https://registry.npmmirror.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
31623192
integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
31633193

3194+
pathe@^0.2.0:
3195+
version "0.2.0"
3196+
resolved "https://registry.npmmirror.com/pathe/-/pathe-0.2.0.tgz#30fd7bbe0a0d91f0e60bae621f5d19e9e225c339"
3197+
integrity sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==
3198+
31643199
pathe@^0.3.0:
31653200
version "0.3.0"
31663201
resolved "https://registry.npmmirror.com/pathe/-/pathe-0.3.0.tgz#fd95bc16208263fa6dc1c78c07b3907a528de6eb"
@@ -3194,6 +3229,15 @@ pinia@^2.0.14:
31943229
"@vue/devtools-api" "^6.1.4"
31953230
vue-demi "*"
31963231

3232+
pkg-types@^0.3.2:
3233+
version "0.3.3"
3234+
resolved "https://registry.npmmirror.com/pkg-types/-/pkg-types-0.3.3.tgz#3c25e45274e1c586ec7811dcc3449afde846e463"
3235+
integrity sha512-6AJcCMnjUQPQv/Wk960w0TOmjhdjbeaQJoSKWRQv9N3rgkessCu6J0Ydsog/nw1MbpnxHuPzYbfOn2KmlZO1FA==
3236+
dependencies:
3237+
jsonc-parser "^3.0.0"
3238+
mlly "^0.5.3"
3239+
pathe "^0.3.0"
3240+
31973241
pluralize@^8.0.0:
31983242
version "8.0.0"
31993243
resolved "https://registry.npmmirror.com/pluralize/-/pluralize-8.0.0.tgz#1a6fa16a38d12a1901e0320fa017051c539ce3b1"
@@ -3379,6 +3423,11 @@ saxes@^5.0.1:
33793423
dependencies:
33803424
xmlchars "^2.2.0"
33813425

3426+
scule@^0.2.1:
3427+
version "0.2.1"
3428+
resolved "https://registry.npmmirror.com/scule/-/scule-0.2.1.tgz#0c1dc847b18e07219ae9a3832f2f83224e2079dc"
3429+
integrity sha512-M9gnWtn3J0W+UhJOHmBxBTwv8mZCan5i1Himp60t6vvZcor0wr+IM0URKmIglsWJ7bRujNAVVN77fp+uZaWoKg==
3430+
33823431
"semver@2 || 3 || 4 || 5":
33833432
version "5.7.1"
33843433
resolved "https://registry.npmmirror.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
@@ -3538,6 +3587,13 @@ strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
35383587
resolved "https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
35393588
integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
35403589

3590+
strip-literal@^0.4.0:
3591+
version "0.4.0"
3592+
resolved "https://registry.npmmirror.com/strip-literal/-/strip-literal-0.4.0.tgz#0f90e86daecc1eb23c61c62d25238ffad4524634"
3593+
integrity sha512-ql/sBDoJOybTKSIOWrrh8kgUEMjXMwRAkZTD0EwiwxQH/6tTPkZvMIEjp0CRlpi6V5FMiJyvxeRkEi1KrGISoA==
3594+
dependencies:
3595+
acorn "^8.7.1"
3596+
35413597
supports-color@^5.3.0:
35423598
version "5.5.0"
35433599
resolved "https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
@@ -3695,6 +3751,22 @@ undici@^5.2.0:
36953751
resolved "https://registry.npmmirror.com/undici/-/undici-5.4.0.tgz#c474fae02743d4788b96118d46008a24195024d2"
36963752
integrity sha512-A1SRXysDg7J+mVP46jF+9cKANw0kptqSFZ8tGyL+HBiv0K1spjxPX8Z4EGu+Eu6pjClJUBdnUPlxrOafR668/g==
36973753

3754+
unimport@^0.2.7:
3755+
version "0.2.9"
3756+
resolved "https://registry.npmmirror.com/unimport/-/unimport-0.2.9.tgz#62b720220c12a470e83bd01d9bf723b3534d2dd2"
3757+
integrity sha512-5SLmZZL2rwaNOQa/yTGaG0QI0meRhb6MDdIlS9s1uHPSYO6Gfzr7ugl5Rf35/CJioW6wYiNJsN9dru5JMzaD8w==
3758+
dependencies:
3759+
"@rollup/pluginutils" "^4.2.1"
3760+
escape-string-regexp "^5.0.0"
3761+
fast-glob "^3.2.11"
3762+
local-pkg "^0.4.1"
3763+
magic-string "^0.26.2"
3764+
mlly "^0.5.2"
3765+
pathe "^0.3.0"
3766+
scule "^0.2.1"
3767+
strip-literal "^0.4.0"
3768+
unplugin "^0.7.0"
3769+
36983770
unist-util-stringify-position@^2.0.0:
36993771
version "2.0.3"
37003772
resolved "https://registry.npmmirror.com/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz#cce3bfa1cdf85ba7375d1d5b17bdc4cada9bd9da"
@@ -3727,19 +3799,19 @@ unocss@^0.33.2:
37273799
"@unocss/transformer-variant-group" "0.33.5"
37283800
"@unocss/vite" "0.33.5"
37293801

3730-
unplugin-auto-import@^0.7.1:
3731-
version "0.7.2"
3732-
resolved "https://registry.npmmirror.com/unplugin-auto-import/-/unplugin-auto-import-0.7.2.tgz#99c42e5002a5cecfd6133c33a1e2919aba0c6d8c"
3733-
integrity sha512-VzaYUa2VByUT70WSFlOXoovyWuwC/8ePKQUC9fhU+BRmvTC7qhCVgChH/NieWMEVgyT+HhacxM+W7xMEOmA+MA==
3802+
unplugin-auto-import@^0.8.7:
3803+
version "0.8.8"
3804+
resolved "https://registry.npmmirror.com/unplugin-auto-import/-/unplugin-auto-import-0.8.8.tgz#a8d3bbbe9af0fd84f729032d9c1198afd2326216"
3805+
integrity sha512-cVZ79zMR1v4VCZ9emFTUnltmazCc2B4hObyVrxJdlgJ2sK8qub6JfjFt38rCF6MVEddkHiWCU6wZR1qbdqe+ig==
37343806
dependencies:
3735-
"@antfu/utils" "^0.5.1"
3736-
"@rollup/pluginutils" "^4.2.0"
3807+
"@antfu/utils" "^0.5.2"
3808+
"@rollup/pluginutils" "^4.2.1"
37373809
local-pkg "^0.4.1"
3738-
magic-string "^0.26.1"
3739-
resolve "^1.22.0"
3740-
unplugin "^0.6.1"
3810+
magic-string "^0.26.2"
3811+
unimport "^0.2.7"
3812+
unplugin "^0.7.0"
37413813

3742-
unplugin-vue-components@^0.19.5:
3814+
unplugin-vue-components@^0.19.6:
37433815
version "0.19.6"
37443816
resolved "https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.19.6.tgz#268f6d2787d96257d5d1698908d8f34ef3ec5803"
37453817
integrity sha512-APvrJ9Hpid1MLT0G4PWerMJgARhNw6dzz0pcCwCxaO2DR7VyvDacMqjOQNC6ukq7FSw3wzD8VH+9i3EFXwkGmw==
@@ -3755,7 +3827,7 @@ unplugin-vue-components@^0.19.5:
37553827
resolve "^1.22.0"
37563828
unplugin "^0.6.3"
37573829

3758-
unplugin@^0.6.1, unplugin@^0.6.3:
3830+
unplugin@^0.6.3:
37593831
version "0.6.3"
37603832
resolved "https://registry.npmmirror.com/unplugin/-/unplugin-0.6.3.tgz#b8721e2b163a410a7efed726e6a0fc6fbadf975a"
37613833
integrity sha512-CoW88FQfCW/yabVc4bLrjikN9HC8dEvMU4O7B6K2jsYMPK0l6iAnd9dpJwqGcmXJKRCU9vwSsy653qg+RK0G6A==
@@ -3764,6 +3836,16 @@ unplugin@^0.6.1, unplugin@^0.6.3:
37643836
webpack-sources "^3.2.3"
37653837
webpack-virtual-modules "^0.4.3"
37663838

3839+
unplugin@^0.7.0:
3840+
version "0.7.0"
3841+
resolved "https://registry.npmmirror.com/unplugin/-/unplugin-0.7.0.tgz#8c8e28a7ca454a13313483ddd4c1f9cc1809d966"
3842+
integrity sha512-OsiFrgybmqm5bGuaodvbLYhqUrvGuRHRMZDhddKEXTDbuQ1x+hR7M1WpQguXj03whVYjEYChhFo738cZH5RNig==
3843+
dependencies:
3844+
acorn "^8.7.1"
3845+
chokidar "^3.5.3"
3846+
webpack-sources "^3.2.3"
3847+
webpack-virtual-modules "^0.4.3"
3848+
37673849
uri-js@^4.2.2:
37683850
version "4.4.1"
37693851
resolved "https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
@@ -3866,6 +3948,11 @@ vue-i18n@^9.1.10:
38663948
"@intlify/vue-devtools" "9.1.10"
38673949
"@vue/devtools-api" "^6.0.0-beta.7"
38683950

3951+
vue-request@^1.2.4:
3952+
version "1.2.4"
3953+
resolved "https://registry.npmmirror.com/vue-request/-/vue-request-1.2.4.tgz#02ab150cc2903605464e6efcb501c480d9dd536f"
3954+
integrity sha512-i+i+6Fog6F8EtYUeueumzKS9Sg06CvjsMXH8TK0YSBxY4sDxIJ+snTEke5rLqiV9d19DTuJOxPQFjTBUpsMtXA==
3955+
38693956
vue-router@^4.0.15:
38703957
version "4.0.16"
38713958
resolved "https://registry.npmmirror.com/vue-router/-/vue-router-4.0.16.tgz#9477beeeef36e80e04d041a1738801a55e6e862e"

0 commit comments

Comments
 (0)