@c-d-cc/reap 0.7.1 → 0.7.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 +2 -1
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -9790,6 +9790,7 @@ async function initProject(projectRoot, projectName, entryMode, preset, onProgre
9790
9790
  version: "0.1.0",
9791
9791
  project: projectName,
9792
9792
  entryMode,
9793
+ autoUpdate: true,
9793
9794
  ...preset && { preset }
9794
9795
  };
9795
9796
  await ConfigManager.write(paths, config);
@@ -10946,7 +10947,7 @@ async function fixProject(projectRoot) {
10946
10947
  // src/cli/index.ts
10947
10948
  init_fs();
10948
10949
  import { join as join11 } from "path";
10949
- program.name("reap").description("REAP — Recursive Evolutionary Autonomous Pipeline").version("0.7.1");
10950
+ program.name("reap").description("REAP — Recursive Evolutionary Autonomous Pipeline").version("0.7.2");
10950
10951
  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) => {
10951
10952
  try {
10952
10953
  const cwd = process.cwd();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@c-d-cc/reap",
3
- "version": "0.7.1",
3
+ "version": "0.7.2",
4
4
  "description": "Recursive Evolutionary Autonomous Pipeline — AI and humans evolve software across generations",
5
5
  "type": "module",
6
6
  "license": "MIT",