@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 CHANGED
@@ -88,11 +88,7 @@ process.chdir(PLUGIN_DIR);
88
88
  // --------------- install + build ---------------
89
89
 
90
90
  log("Installing dependencies...");
91
- try {
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
@@ -48,7 +48,7 @@ fi
48
48
  cd "$PLUGIN_DIR"
49
49
 
50
50
  log "Installing dependencies..."
51
- pnpm install --frozen-lockfile 2>/dev/null || pnpm install
51
+ pnpm install
52
52
 
53
53
  log "Building TypeScript..."
54
54
  pnpm build
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syengup/friday-channel-next",
3
- "version": "0.0.7",
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": {