devwing 0.1.23 → 0.1.24
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/dist/index.js +1 -7
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2786,7 +2786,7 @@ function getVersion() {
|
|
|
2786
2786
|
continue;
|
|
2787
2787
|
}
|
|
2788
2788
|
}
|
|
2789
|
-
return "0.1.
|
|
2789
|
+
return "0.1.24";
|
|
2790
2790
|
}
|
|
2791
2791
|
var DEMO_USER2 = {
|
|
2792
2792
|
id: "usr_a1b2c3d4",
|
|
@@ -3219,8 +3219,6 @@ ${recent[recent.length - 1].content}`;
|
|
|
3219
3219
|
} else {
|
|
3220
3220
|
await loginCommand();
|
|
3221
3221
|
}
|
|
3222
|
-
restoreStdin();
|
|
3223
|
-
await sleep2(80);
|
|
3224
3222
|
await this.checkAuth();
|
|
3225
3223
|
}
|
|
3226
3224
|
async cmdLogout() {
|
|
@@ -3229,8 +3227,6 @@ ${recent[recent.length - 1].content}`;
|
|
|
3229
3227
|
} else {
|
|
3230
3228
|
await logoutCommand();
|
|
3231
3229
|
}
|
|
3232
|
-
restoreStdin();
|
|
3233
|
-
await sleep2(80);
|
|
3234
3230
|
await this.checkAuth();
|
|
3235
3231
|
}
|
|
3236
3232
|
async cmdStatus() {
|
|
@@ -3298,8 +3294,6 @@ ${recent[recent.length - 1].content}`;
|
|
|
3298
3294
|
const content = parts.slice(1).join(" ").trim();
|
|
3299
3295
|
if (this.isDemo) {
|
|
3300
3296
|
await demoMemoryCommand(sub, content || void 0);
|
|
3301
|
-
restoreStdin();
|
|
3302
|
-
await sleep2(80);
|
|
3303
3297
|
} else {
|
|
3304
3298
|
await memoryCommand(sub, content || void 0, this.options);
|
|
3305
3299
|
}
|