@syengup/friday-channel-next 0.0.7 → 0.0.8
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/install.js +1 -5
- package/install.sh +1 -1
- package/package.json +1 -2
package/install.js
CHANGED
|
@@ -88,11 +88,7 @@ process.chdir(PLUGIN_DIR);
|
|
|
88
88
|
// --------------- install + build ---------------
|
|
89
89
|
|
|
90
90
|
log("Installing dependencies...");
|
|
91
|
-
|
|
92
|
-
execSync("pnpm install --frozen-lockfile", { stdio: "inherit" });
|
|
93
|
-
} catch {
|
|
94
|
-
execSync("pnpm install", { stdio: "inherit" });
|
|
95
|
-
}
|
|
91
|
+
execSync("pnpm install", { stdio: "inherit" });
|
|
96
92
|
|
|
97
93
|
log("Building TypeScript...");
|
|
98
94
|
execSync("pnpm build", { stdio: "inherit" });
|
package/install.sh
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syengup/friday-channel-next",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"description": "OpenClaw Friday Next Apple channel plugin",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
"install.js",
|
|
10
10
|
"install.sh",
|
|
11
11
|
"tsconfig.json",
|
|
12
|
-
"pnpm-lock.yaml",
|
|
13
12
|
"openclaw.plugin.json"
|
|
14
13
|
],
|
|
15
14
|
"scripts": {
|