@comate/zulu 0.2.0 → 0.2.1-beta.2
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/comate-engine/node_modules/@comate/plugin-host/dist/index.js +1 -1
- package/comate-engine/node_modules/@comate/plugin-host/dist/main.js +1 -1
- package/comate-engine/node_modules/@comate/plugin-host/dist/{user-CGfO2VEw.js → user-Buhpnssj.js} +5 -5
- package/comate-engine/node_modules/@comate/plugin-shared-internals/dist/index.d.ts +8 -2
- package/comate-engine/node_modules/@comate/plugin-shared-internals/dist/index.js +8 -8
- package/comate-engine/node_modules/better-sqlite3/build/Release/better_sqlite3.node +0 -0
- package/comate-engine/node_modules/better-sqlite3/node_modules/.bin/prebuild-install +2 -2
- package/comate-engine/plugins/bpm/dist/index.js +5 -5
- package/comate-engine/server.js +122 -62
- package/dist/bundle/index.js +2 -2
- package/package.json +1 -1
|
Binary file
|
|
@@ -6,9 +6,9 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/Users/bear/baidu/ide/comate-plugin-host
|
|
9
|
+
export NODE_PATH="/Users/bear/baidu/ide/comate-plugin-host/node_modules/.pnpm/prebuild-install@7.1.2/node_modules/prebuild-install/node_modules:/Users/bear/baidu/ide/comate-plugin-host/node_modules/.pnpm/prebuild-install@7.1.2/node_modules:/Users/bear/baidu/ide/comate-plugin-host/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/Users/bear/baidu/ide/comate-plugin-host
|
|
11
|
+
export NODE_PATH="/Users/bear/baidu/ide/comate-plugin-host/node_modules/.pnpm/prebuild-install@7.1.2/node_modules/prebuild-install/node_modules:/Users/bear/baidu/ide/comate-plugin-host/node_modules/.pnpm/prebuild-install@7.1.2/node_modules:/Users/bear/baidu/ide/comate-plugin-host/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
14
|
exec "$basedir/node" "$basedir/../../../../../prebuild-install@7.1.2/node_modules/prebuild-install/bin.js" "$@"
|
|
@@ -17,11 +17,11 @@ const fetchWithTimeout = (url, options, timeout = 60000)=>{
|
|
|
17
17
|
]);
|
|
18
18
|
};
|
|
19
19
|
|
|
20
|
-
const defaultAbilityUrl = 'http://10.138.
|
|
21
|
-
const legoAbilityUrl = 'http://10.138.
|
|
22
|
-
const envSearchUrl = 'http://10.138.
|
|
23
|
-
const bpmApiQueryUrl = 'http://10.138.
|
|
24
|
-
const legoWidgetUrl = 'http://10.138.
|
|
20
|
+
const defaultAbilityUrl = 'http://10.138.182.237:8233/bpm/default';
|
|
21
|
+
const legoAbilityUrl = 'http://10.138.182.237:8233/bpm/lego';
|
|
22
|
+
const envSearchUrl = 'http://10.138.182.237:8233/bpm/env';
|
|
23
|
+
const bpmApiQueryUrl = 'http://10.138.182.237:8233/bpm/api';
|
|
24
|
+
const legoWidgetUrl = 'http://10.138.182.237:8233/bpm/lego/widget';
|
|
25
25
|
|
|
26
26
|
class HelpFallbackProvider extends FallbackProvider {
|
|
27
27
|
static{
|