@opentapd/tplugin-cli 0.32.1-alpha.10 → 0.32.1-alpha.9

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.
Files changed (2) hide show
  1. package/config.js +93 -0
  2. package/package.json +4 -3
package/config.js ADDED
@@ -0,0 +1,93 @@
1
+ const env = process.env.TPLUGIN_ENV ? process.env.TPLUGIN_ENV : 'oa';
2
+
3
+ const proApiHostConfigMap = {
4
+ test: 'http://wolf.woa.com/tapdapi',
5
+ extest: 'http://apiv2.wolfex.woa.com',
6
+ cloudtest: 'http://apiv2.wolfcloud.woa.com',
7
+ ex: 'https://apiv2.tapd.tencent.com',
8
+ oa: 'http://apiv2.tapd.woa.com',
9
+ idc: 'http://oss.apiv2.tapd.woa.com',
10
+ cloud: 'https://api.tapd.cn',
11
+ };
12
+ const websocketHostConfigMap = {
13
+ test: 'ws://proxifer.wolf.woa.com/proxy',
14
+ extest: 'ws://proxifer.wolf.woa.com/proxy',
15
+ cloudtest: 'ws://proxifer.wolfcloud.woa.com/proxy',
16
+ ex: 'wss://proxifer.tapd.tencent.com/proxy',
17
+ oa: 'ws://proxifer.tapd.woa.com/proxy',
18
+ idc: 'ws://proxifer.tapd.woa.com/proxy',
19
+ cloud: 'wss://proxifer.tapd.cn/proxy',
20
+ };
21
+ const tapdHostConfigMap = {
22
+ test: 'https://wolf.woa.com',
23
+ extest: 'https://wolfex.woa.com',
24
+ cloudtest: 'https://wolfcloud.woa.com',
25
+ ex: 'https://tapd.tencent.com',
26
+ oa: 'https://tapd.woa.com',
27
+ idc: 'https://tapd.woa.com',
28
+ cloud: 'https://www.tapd.cn',
29
+ };
30
+ const openHostConfigMap = {
31
+ test: 'http://o.wolf.woa.com',
32
+ extest: 'http://o.wolf.woa.com',
33
+ cloudtest: 'http://o.wolfcloud.woa.com',
34
+ ex: 'https://o.tapd.tencent.com',
35
+ oa: 'https://o.tapd.woa.com',
36
+ idc: 'https://o.tapd.woa.com',
37
+ cloud: 'https://open.tapd.cn',
38
+ };
39
+ const upgradeWebsocketHostConfigMap = {
40
+ test: 'ws://upgrader.devops.tiger.oa.com',
41
+ extest: 'ws://upgrader.devops.tiger.oa.com',
42
+ cloudtest: 'ws://upgrader.wolfcloud.woa.com',
43
+ ex: 'wss://upgrader.tapd.tencent.com',
44
+ oa: 'wss://upgrader.tapd.woa.com',
45
+ idc: 'wss://upgrader.tapd.woa.com',
46
+ cloud: 'wss://upgrader.tapd.cn',
47
+ };
48
+ const pluginEnvConfigMap = {
49
+ test: 'oa',
50
+ extest: 'ex',
51
+ ex: 'ex',
52
+ cloudtest: 'cloud',
53
+ cloud: 'cloud',
54
+ oa: 'oa',
55
+ idc: 'oa',
56
+ };
57
+
58
+ const npmRegistry = {
59
+ test: 'https://mirrors.tencent.com/npm/',
60
+ oa: 'https://mirrors.tencent.com/npm/',
61
+ idc: 'https://mirrors.tencent.com/npm/',
62
+ };
63
+
64
+ const pipBaseURL = {
65
+ test: 'https://mirrors.tencent.com/repository/pypi/tencent_pypi/simple',
66
+ oa: 'https://mirrors.tencent.com/repository/pypi/tencent_pypi/simple',
67
+ idc: 'https://mirrors.tencent.com/repository/pypi/tencent_pypi/simple',
68
+ };
69
+
70
+ const pipExtraURL = {
71
+ test: 'https://mirrors.tencent.com/pypi/simple/',
72
+ oa: 'https://mirrors.tencent.com/pypi/simple/',
73
+ idc: 'https://mirrors.tencent.com/pypi/simple/',
74
+ };
75
+
76
+ // 地址配置
77
+ module.exports = {
78
+ tapd: {
79
+ openHost: openHostConfigMap[env], // 开放平台地址
80
+ tapdHost: tapdHostConfigMap[env], // TAPD平台地址
81
+ websocketHost: websocketHostConfigMap[env], // Socket地址
82
+ apiHost: proApiHostConfigMap[env], // API地址
83
+ upgradeWebsocketHost: upgradeWebsocketHostConfigMap[env], // 热更新代理地址
84
+ pluginEnv: pluginEnvConfigMap[env], // 插件环境
85
+ },
86
+ npm: {
87
+ registry: npmRegistry[env],
88
+ },
89
+ pip: {
90
+ baseURL: pipBaseURL[env],
91
+ extralURL: pipExtraURL[env],
92
+ },
93
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opentapd/tplugin-cli",
3
- "version": "0.32.1-alpha.10",
3
+ "version": "0.32.1-alpha.9",
4
4
  "description": "tplugin-cli",
5
5
  "bin": {
6
6
  "tplugin-cli": "index.js"
@@ -26,7 +26,7 @@
26
26
  "author": "",
27
27
  "license": "ISC",
28
28
  "dependencies": {
29
- "@opentapd/tplugin-core": "^1.20.1-alpha.7",
29
+ "@opentapd/tplugin-core": "^1.20.1-alpha.6",
30
30
  "address": "^1.2.2",
31
31
  "archiver": "^5.3.1",
32
32
  "axios": "^0.21.1",
@@ -71,6 +71,7 @@
71
71
  "scf-bin",
72
72
  "util",
73
73
  "cli.js",
74
+ "config.js",
74
75
  "index.js",
75
76
  "config.json"
76
77
  ],
@@ -78,5 +79,5 @@
78
79
  "node": ">=14.13.0"
79
80
  },
80
81
  "main": "index.js",
81
- "gitHead": "5dc7094c7ef5f13c7dc69ec3b1818474fe2f20a3"
82
+ "gitHead": "bdc3f471b0eaa158e4eccf1e125d127a3b79277a"
82
83
  }