@nfinitmonkeys/clan-engine 0.1.0 → 0.1.1

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/dist/index.d.ts CHANGED
@@ -21,6 +21,7 @@ export declare function setup(repo: string, identity: ClanIdentity, opts: {
21
21
  at: string;
22
22
  today: string;
23
23
  dryRun?: boolean;
24
+ brain?: boolean;
24
25
  }): {
25
26
  plan: Plan;
26
27
  result?: ApplyResult;
package/dist/index.js CHANGED
@@ -25,7 +25,7 @@ import { reconcile as _reconcile } from './reconcile.js';
25
25
  import { apply as _apply } from './apply.js';
26
26
  export function setup(repo, identity, opts) {
27
27
  const ins = _inspect(repo, { tierFlag: identity.tier });
28
- const plan = _reconcile(identity, ins, { jungle: identity.jungle, today: opts.today });
28
+ const plan = _reconcile(identity, ins, { jungle: identity.jungle, today: opts.today, brain: opts.brain });
29
29
  if (opts.dryRun)
30
30
  return { plan };
31
31
  return { plan, result: _apply(plan, { at: opts.at }) };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nfinitmonkeys/clan-engine",
3
- "version": "0.1.0",
4
- "description": "Deterministic setup engine for Nfinit Monkeys clans the single template + reconciliation authority behind the published CLIs and the internal fleet tooling. Idempotent, dry-run-by-default, non-destructive.",
3
+ "version": "0.1.1",
4
+ "description": "Deterministic setup engine for Nfinit Monkeys clans \u2014 the single template + reconciliation authority behind the published CLIs and the internal fleet tooling. Idempotent, dry-run-by-default, non-destructive.",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "clan-engine": "./dist/cli.js"