clawup 1.0.4 → 1.0.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawup",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Deploy and manage a fleet of OpenClaw AI agents on AWS",
5
5
  "bin": {
6
6
  "clawup": "dist/bin.js"
@@ -14,9 +14,13 @@ const __dirname = dirname(fileURLToPath(import.meta.url));
14
14
  const pkg = JSON.parse(readFileSync(join(__dirname, "..", "package.json"), "utf-8"));
15
15
 
16
16
  // External: all real dependencies (installed from npm) + node builtins
17
+ // @clawup/core must NOT be external — it's a private workspace package that
18
+ // needs to be inlined into the bundle for the published npm package to work.
17
19
  const external = [
18
20
  ...Object.keys(pkg.dependencies || {}).filter((d) => d !== "@clawup/core"),
19
- ...Object.keys(pkg.devDependencies || {}).filter((d) => d !== "esbuild"),
21
+ ...Object.keys(pkg.devDependencies || {}).filter(
22
+ (d) => d !== "esbuild" && d !== "@clawup/core"
23
+ ),
20
24
  ];
21
25
 
22
26
  await build({