iv-npm 1.4.13 → 1.4.15
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/package.json +1 -1
- package/packages/shared/dist/utils/index.mjs +12 -12
- package/packages/shared/package.json +31 -31
- package/packages/ui/dist/index.cjs.js +1 -1
- package/packages/ui/dist/index.esm.js +2 -2
- package/packages/ui/dist/index.umd.js +1 -1
- package/packages/ui/dist/index.umd.js.map +1 -1
- package/packages/ui/package.json +60 -60
- package/pnpm-lock.yaml +5724 -5724
package/package.json
CHANGED
|
@@ -146,28 +146,28 @@ function hostConfiger(key) {
|
|
|
146
146
|
ASSET_URL: "https://gateway.nacho.cn"
|
|
147
147
|
};
|
|
148
148
|
try {
|
|
149
|
-
if (process.env.
|
|
150
|
-
devHost.BASE_URL = process.env.
|
|
149
|
+
if (process.env.VITE_APP_BASE_URL)
|
|
150
|
+
devHost.BASE_URL = process.env.VITE_APP_BASE_URL;
|
|
151
151
|
} catch (error) {
|
|
152
|
-
console.log(error, "
|
|
152
|
+
console.log(error, "VITE_APP_BASE_URL");
|
|
153
153
|
}
|
|
154
154
|
try {
|
|
155
|
-
if (process.env.
|
|
156
|
-
devHost.MRP_URL = process.env.
|
|
155
|
+
if (process.env.VITE_APP_MRP_URL)
|
|
156
|
+
devHost.MRP_URL = process.env.VITE_APP_MRP_URL;
|
|
157
157
|
} catch (error) {
|
|
158
|
-
console.log(error, "
|
|
158
|
+
console.log(error, "VITE_APP_MRP_URL");
|
|
159
159
|
}
|
|
160
160
|
try {
|
|
161
|
-
if (process.env.
|
|
162
|
-
devHost.MRP2_URL = process.env.
|
|
161
|
+
if (process.env.VITE_APP_MRP2_URL)
|
|
162
|
+
devHost.MRP2_URL = process.env.VITE_APP_MRP2_URL;
|
|
163
163
|
} catch (error) {
|
|
164
|
-
console.log(error, "
|
|
164
|
+
console.log(error, "VITE_APP_MRP2_URL");
|
|
165
165
|
}
|
|
166
166
|
try {
|
|
167
|
-
if (process.env.
|
|
168
|
-
devHost.ASSET_URL = process.env.
|
|
167
|
+
if (process.env.VITE_APP_ASSET_URL)
|
|
168
|
+
devHost.ASSET_URL = process.env.VITE_APP_ASSET_URL;
|
|
169
169
|
} catch (error) {
|
|
170
|
-
console.log(error, "
|
|
170
|
+
console.log(error, "VITE_APP_ASSET_URL");
|
|
171
171
|
}
|
|
172
172
|
try {
|
|
173
173
|
if (process.env.VUE_APP_BASE_URL)
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@IVNPM/shared",
|
|
3
|
-
"version": "1.0.0",
|
|
4
|
-
"private": false,
|
|
5
|
-
"description": "IVNPM/shared",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"prepare": "npm run build",
|
|
8
|
-
"dev": "tsup --watch",
|
|
9
|
-
"build": "tsup"
|
|
10
|
-
},
|
|
11
|
-
"main": "dist/utils/index.mjs",
|
|
12
|
-
"module": "dist/utils/index.mjs",
|
|
13
|
-
"types": "dist/utils/index.d.ts",
|
|
14
|
-
"files": [
|
|
15
|
-
"index.js",
|
|
16
|
-
"dist"
|
|
17
|
-
],
|
|
18
|
-
"author": "Mr.Cong",
|
|
19
|
-
"license": "ISC",
|
|
20
|
-
"devDependencies": {
|
|
21
|
-
"@types/node": "^18.6.4",
|
|
22
|
-
"rollup-plugin-copy": "^3.4.0",
|
|
23
|
-
"tsup": "^6.2.1"
|
|
24
|
-
},
|
|
25
|
-
"peerDependencies": {
|
|
26
|
-
"ant-design-vue": "^3.2.5"
|
|
27
|
-
},
|
|
28
|
-
"dependencies": {
|
|
29
|
-
"nanoid": "^4.0.0"
|
|
30
|
-
}
|
|
31
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@IVNPM/shared",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "IVNPM/shared",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"prepare": "npm run build",
|
|
8
|
+
"dev": "tsup --watch",
|
|
9
|
+
"build": "tsup"
|
|
10
|
+
},
|
|
11
|
+
"main": "dist/utils/index.mjs",
|
|
12
|
+
"module": "dist/utils/index.mjs",
|
|
13
|
+
"types": "dist/utils/index.d.ts",
|
|
14
|
+
"files": [
|
|
15
|
+
"index.js",
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"author": "Mr.Cong",
|
|
19
|
+
"license": "ISC",
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@types/node": "^18.6.4",
|
|
22
|
+
"rollup-plugin-copy": "^3.4.0",
|
|
23
|
+
"tsup": "^6.2.1"
|
|
24
|
+
},
|
|
25
|
+
"peerDependencies": {
|
|
26
|
+
"ant-design-vue": "^3.2.5"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"nanoid": "^4.0.0"
|
|
30
|
+
}
|
|
31
|
+
}
|