@c-d-cc/reap 0.1.1 → 0.1.2

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/cli.js +1 -1
  2. package/package.json +3 -3
package/dist/cli.js CHANGED
@@ -9863,7 +9863,7 @@ async function fixProject(projectRoot) {
9863
9863
 
9864
9864
  // src/cli/index.ts
9865
9865
  import { join as join7 } from "path";
9866
- program.name("reap").description("REAP — Recursive Evolutionary Autonomous Pipeline").version("0.1.0");
9866
+ program.name("reap").description("REAP — Recursive Evolutionary Autonomous Pipeline").version("0.1.2");
9867
9867
  program.command("init").description("Initialize a new REAP project (Genesis)").argument("[project-name]", "Project name (defaults to current directory name)").option("-m, --mode <mode>", "Entry mode: greenfield, migration, adoption", "greenfield").option("-p, --preset <preset>", "Bootstrap with a genome preset (e.g., bun-hono-react)").action(async (projectName, options) => {
9868
9868
  try {
9869
9869
  const cwd = process.cwd();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@c-d-cc/reap",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Recursive Evolutionary Autonomous Pipeline — AI and humans evolve software across generations",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -9,7 +9,7 @@
9
9
  "type": "git",
10
10
  "url": "git+https://github.com/c-d-cc/reap.git"
11
11
  },
12
- "homepage": "https://github.com/c-d-cc/reap",
12
+ "homepage": "https://reap.cc",
13
13
  "keywords": [
14
14
  "ai",
15
15
  "development",
@@ -30,7 +30,7 @@
30
30
  },
31
31
  "scripts": {
32
32
  "dev": "bun run src/cli/index.ts",
33
- "build": "bun build src/cli/index.ts --outfile dist/cli.js --target node && rm -rf dist/templates && cp -r src/templates dist/templates",
33
+ "build": "node scripts/build.js",
34
34
  "prepublishOnly": "npm run build",
35
35
  "test": "bun test"
36
36
  },