plugin-updater 1.0.40 → 1.0.41

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.
Files changed (2) hide show
  1. package/dist/git.js +1 -1
  2. package/package.json +1 -1
package/dist/git.js CHANGED
@@ -4,7 +4,7 @@ import os from "os";
4
4
  import { execSync } from "child_process";
5
5
  import { getReposDir } from "./env.js";
6
6
  import { writeLog } from "./log.js";
7
- const BUILD_OUTPUT_DIRS = ["dist", path.join("core", "dist"), path.join("core-auth", "dist")];
7
+ const BUILD_OUTPUT_DIRS = ["dist", path.join("core", "dist")];
8
8
  export function executeGit(command, cwd) {
9
9
  writeLog(`Executing git: ${command} in ${cwd}`);
10
10
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "plugin-updater",
3
- "version": "1.0.40",
3
+ "version": "1.0.41",
4
4
  "description": "Plugin lifecycle manager for OpenCode and Claude Code launchers",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",