@comate/zulu 0.7.0 → 0.7.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-engine/dist/index.js +7 -7
- 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-DPNOYSqg.js → user-Cd64T1ck.js} +5 -5
- package/comate-engine/node_modules/@comate/plugin-shared-internals/dist/index.d.ts +97 -3
- package/comate-engine/node_modules/@comate/plugin-shared-internals/dist/index.js +5 -5
- package/comate-engine/node_modules/better-sqlite3/node_modules/.bin/prebuild-install +2 -2
- package/comate-engine/package.json +3 -1
- package/comate-engine/plugins/demo-feature/dist/index.js +28 -0
- package/comate-engine/server.js +76 -76
- package/dist/bundle/index.js +2 -2
- package/package.json +1 -1
|
@@ -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/node_modules/.pnpm/prebuild-install@7.1.3/node_modules/prebuild-install/node_modules:/Users/bear/baidu/ide/comate-plugin-host/node_modules/.pnpm/prebuild-install@7.1.3/node_modules:/Users/bear/baidu/ide/comate-plugin-host/node_modules/.pnpm/node_modules"
|
|
9
|
+
export NODE_PATH="/Users/bear/baidu/ide/comate-plugin-host-copy/node_modules/.pnpm/prebuild-install@7.1.3/node_modules/prebuild-install/node_modules:/Users/bear/baidu/ide/comate-plugin-host-copy/node_modules/.pnpm/prebuild-install@7.1.3/node_modules:/Users/bear/baidu/ide/comate-plugin-host-copy/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/Users/bear/baidu/ide/comate-plugin-host/node_modules/.pnpm/prebuild-install@7.1.3/node_modules/prebuild-install/node_modules:/Users/bear/baidu/ide/comate-plugin-host/node_modules/.pnpm/prebuild-install@7.1.3/node_modules:/Users/bear/baidu/ide/comate-plugin-host/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
11
|
+
export NODE_PATH="/Users/bear/baidu/ide/comate-plugin-host-copy/node_modules/.pnpm/prebuild-install@7.1.3/node_modules/prebuild-install/node_modules:/Users/bear/baidu/ide/comate-plugin-host-copy/node_modules/.pnpm/prebuild-install@7.1.3/node_modules:/Users/bear/baidu/ide/comate-plugin-host-copy/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.3/node_modules/prebuild-install/bin.js" "$@"
|
|
@@ -86,7 +86,8 @@
|
|
|
86
86
|
"vscode-languageserver": "8.0.2",
|
|
87
87
|
"vscode-languageserver-textdocument": "^1.0.11",
|
|
88
88
|
"vscode-uri": "^3.0.8",
|
|
89
|
-
"web-streams-polyfill": "^4.1.0"
|
|
89
|
+
"web-streams-polyfill": "^4.1.0",
|
|
90
|
+
"ws": "^8.18.3"
|
|
90
91
|
},
|
|
91
92
|
"devDependencies": {
|
|
92
93
|
"@comate/plugin-host": "^0.9.2",
|
|
@@ -104,6 +105,7 @@
|
|
|
104
105
|
"@types/js-yaml": "^4.0.9",
|
|
105
106
|
"@types/node": "18.15.3",
|
|
106
107
|
"@types/picomatch": "^4.0.0",
|
|
108
|
+
"@types/ws": "^8.18.1",
|
|
107
109
|
"rollup": "^4.9.2",
|
|
108
110
|
"rollup-plugin-dts": "^6.1.0",
|
|
109
111
|
"vscode-languageserver-types": "^3.17.5"
|
|
@@ -71261,6 +71261,34 @@ var VirtualDocumentAction;
|
|
|
71261
71261
|
VirtualDocumentAction["EDIT"] = "edit";
|
|
71262
71262
|
VirtualDocumentAction["PREVIEW"] = "preview";
|
|
71263
71263
|
})(VirtualDocumentAction || (VirtualDocumentAction = {}));
|
|
71264
|
+
var SpecEditorIconState;
|
|
71265
|
+
(function(SpecEditorIconState) {
|
|
71266
|
+
SpecEditorIconState["DEFAULT"] = "default";
|
|
71267
|
+
SpecEditorIconState["LOADING"] = "loading";
|
|
71268
|
+
SpecEditorIconState["PENDING"] = "pending";
|
|
71269
|
+
SpecEditorIconState["COMPLETED"] = "completed"; // 真正的summary完成
|
|
71270
|
+
})(SpecEditorIconState || (SpecEditorIconState = {}));
|
|
71271
|
+
var SpecEditorTabType;
|
|
71272
|
+
(function(SpecEditorTabType) {
|
|
71273
|
+
SpecEditorTabType["DOC"] = "doc";
|
|
71274
|
+
SpecEditorTabType["TASKS"] = "tasks";
|
|
71275
|
+
SpecEditorTabType["SUMMARY"] = "summary";
|
|
71276
|
+
SpecEditorTabType["CHANGES"] = "changes";
|
|
71277
|
+
})(SpecEditorTabType || (SpecEditorTabType = {}));
|
|
71278
|
+
var SpecEditorTabStatus;
|
|
71279
|
+
(function(SpecEditorTabStatus) {
|
|
71280
|
+
SpecEditorTabStatus["LOADING"] = "loading";
|
|
71281
|
+
SpecEditorTabStatus["WAIT_CONFIRM"] = "waitConfirm";
|
|
71282
|
+
SpecEditorTabStatus["END"] = "end";
|
|
71283
|
+
SpecEditorTabStatus["COMPLETED"] = "completed";
|
|
71284
|
+
})(SpecEditorTabStatus || (SpecEditorTabStatus = {}));
|
|
71285
|
+
var SpecEditorAction;
|
|
71286
|
+
(function(SpecEditorAction) {
|
|
71287
|
+
SpecEditorAction["UPDATE_TAB_ICON"] = "updateTabIcon";
|
|
71288
|
+
SpecEditorAction["RENAME_TAB"] = "renameTab";
|
|
71289
|
+
SpecEditorAction["SET_TAB_INFO"] = "setTabInfo";
|
|
71290
|
+
SpecEditorAction["OPEN_WITH_PARAMS"] = "openWithParams";
|
|
71291
|
+
})(SpecEditorAction || (SpecEditorAction = {}));
|
|
71264
71292
|
|
|
71265
71293
|
const trim = (str)=>str.replace(/\s|\t/g, '').replace(/[;|,]$/, '').toLowerCase();
|
|
71266
71294
|
const roughEqual = (left, right)=>trim(left) === trim(right);
|