opencode-supertask 0.1.36 → 0.1.38
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/CHANGELOG.md +17 -0
- package/dist/cli/index.js +92 -59
- package/dist/cli/index.js.map +1 -1
- package/dist/gateway/index.js +11 -9
- package/dist/gateway/index.js.map +1 -1
- package/dist/plugin/supertask.js +12 -2
- package/dist/plugin/supertask.js.map +1 -1
- package/dist/web/index.d.ts +1 -1
- package/dist/web/index.js +7 -7
- package/dist/web/index.js.map +1 -1
- package/dist/worker/index.js +4 -2
- package/dist/worker/index.js.map +1 -1
- package/package.json +1 -1
package/dist/plugin/supertask.js
CHANGED
|
@@ -28972,8 +28972,18 @@ function ensureGatewayUnlocked() {
|
|
|
28972
28972
|
|
|
28973
28973
|
// src/daemon/update.ts
|
|
28974
28974
|
import { spawnSync as spawnSync2 } from "child_process";
|
|
28975
|
-
import {
|
|
28976
|
-
|
|
28975
|
+
import {
|
|
28976
|
+
chmodSync as chmodSync2,
|
|
28977
|
+
closeSync,
|
|
28978
|
+
existsSync as existsSync5,
|
|
28979
|
+
mkdtempSync,
|
|
28980
|
+
openSync,
|
|
28981
|
+
readFileSync as readFileSync4,
|
|
28982
|
+
readdirSync,
|
|
28983
|
+
realpathSync,
|
|
28984
|
+
rmSync as rmSync2
|
|
28985
|
+
} from "fs";
|
|
28986
|
+
import { homedir as homedir4, tmpdir } from "os";
|
|
28977
28987
|
import { dirname as dirname5, join as join5, resolve as resolve2 } from "path";
|
|
28978
28988
|
var PACKAGE_NAME = "opencode-supertask";
|
|
28979
28989
|
function pluginAt(packageDir) {
|