@funnelsgrove/cli 0.1.187 → 0.1.190

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/README.md CHANGED
@@ -46,7 +46,9 @@ configuration is not copied into the new preview.
46
46
 
47
47
  `fgrove sync down` refuses to overwrite local changes in an existing synced
48
48
  folder. `fgrove sync up` sends only changed and deleted paths in one atomic
49
- draft patch. Disjoint concurrent edits are rebased automatically; if the same
49
+ draft patch. It excludes paths matched by the folder's root `.gitignore` and
50
+ always keeps `.claude/settings.local.json` local while allowing shared files
51
+ such as `.claude/settings.json`. Disjoint concurrent edits are rebased automatically; if the same
50
52
  path changed remotely, run `fgrove sync rebase`: it performs a three-way merge
51
53
  from the recorded base, preserves CLI-managed files, and leaves the working tree
52
54
  untouched when it finds conflicts. Review the merged diff, rerun `fgrove
package/dist/localSync.js CHANGED
@@ -1,8 +1,11 @@
1
+ import { createRequire as _createRequire } from "module";
2
+ const __require = _createRequire(import.meta.url);
1
3
  import { createHash, randomUUID } from 'node:crypto';
2
4
  import { isUtf8 } from 'node:buffer';
3
5
  import { constants } from 'node:fs';
4
6
  import { lstat, mkdir, open, readdir, realpath, rename, rm, stat } from 'node:fs/promises';
5
7
  import path from 'node:path';
8
+ const ignore = __require("ignore");
6
9
  export const SYNC_MANIFEST_FILE = '.funnelsgrove-sync.json';
7
10
  export const LEGACY_OFFER_SETS_GENERATED_PATH = 'src/config/offer-sets.generated.ts';
8
11
  export const DEFAULT_PATCH_BATCH_CONTENT_CHARS = 12_000_000;
@@ -30,12 +33,14 @@ const EXCLUDED_LOCAL_DIRECTORY_NAMES = [
30
33
  'output',
31
34
  ];
32
35
  const EXCLUDED_PATH_PARTS = new Set(EXCLUDED_LOCAL_DIRECTORY_NAMES);
36
+ const CLAUDE_LOCAL_SETTINGS_FILE = '.claude/settings.local.json';
33
37
  const LOCAL_ONLY_GITIGNORE_LINES = [
34
38
  '.env',
35
39
  '.env.local',
36
40
  '.env.*',
37
41
  '!.env.example',
38
42
  SYNC_MANIFEST_FILE,
43
+ CLAUDE_LOCAL_SETTINGS_FILE,
39
44
  ...EXCLUDED_LOCAL_DIRECTORY_NAMES.filter((directoryName) => directoryName !== '.git'),
40
45
  ];
41
46
  const isErrno = (error, code) => (error instanceof Error && 'code' in error && error.code === code);
@@ -258,6 +263,7 @@ function assertSafeSyncTargetPath(filePath) {
258
263
  }
259
264
  export function shouldSyncFile(filePath) {
260
265
  const normalized = normalizeSyncPath(filePath);
266
+ const normalizedLowercase = normalized.toLocaleLowerCase('en-US');
261
267
  const parts = normalized.split('/');
262
268
  const fileName = parts.at(-1) ?? '';
263
269
  if (parts.some((part) => EXCLUDED_PATH_PARTS.has(part.toLocaleLowerCase('en-US')))) {
@@ -269,6 +275,9 @@ export function shouldSyncFile(filePath) {
269
275
  if (normalized === LEGACY_OFFER_SETS_GENERATED_PATH) {
270
276
  return false;
271
277
  }
278
+ if (normalizedLowercase === CLAUDE_LOCAL_SETTINGS_FILE) {
279
+ return false;
280
+ }
272
281
  if (fileName === '.env' || (fileName.startsWith('.env.') && fileName !== '.env.example')) {
273
282
  return false;
274
283
  }
@@ -279,7 +288,8 @@ export function filterSyncableSourceFiles(files) {
279
288
  }
280
289
  export async function buildSyncManifest(rootDir, input) {
281
290
  const resolvedRoot = await resolveSafeRoot(rootDir, false);
282
- const files = await collectSyncFiles(resolvedRoot, resolvedRoot);
291
+ const gitignore = await readRootGitignore(resolvedRoot);
292
+ const files = await collectSyncFiles(resolvedRoot, resolvedRoot, gitignore);
283
293
  return {
284
294
  version: 1,
285
295
  workspaceId: input.workspaceId,
@@ -808,13 +818,24 @@ export async function writeSourceFiles(rootDir, files) {
808
818
  await writeSafeRootFile(rootDir, relativePath, decodedContent || file.content);
809
819
  }
810
820
  }
811
- async function collectSyncFiles(rootDir, dir) {
821
+ async function readRootGitignore(rootDir) {
822
+ const matcher = ignore();
823
+ try {
824
+ matcher.add((await readSafeRootFile(rootDir, '.gitignore')).toString('utf8'));
825
+ }
826
+ catch (error) {
827
+ if (!isErrno(error, 'ENOENT'))
828
+ throw error;
829
+ }
830
+ return matcher;
831
+ }
832
+ async function collectSyncFiles(rootDir, dir, gitignore) {
812
833
  const entries = await readdir(dir, { withFileTypes: true });
813
834
  const files = [];
814
835
  for (const entry of entries) {
815
836
  const absolutePath = path.join(dir, entry.name);
816
837
  const relativePath = normalizeSyncPath(path.relative(rootDir, absolutePath));
817
- if (!shouldSyncFile(relativePath)) {
838
+ if (!shouldSyncFile(relativePath) || gitignore.ignores(relativePath)) {
818
839
  continue;
819
840
  }
820
841
  const metadata = await lstat(absolutePath);
@@ -822,7 +843,10 @@ async function collectSyncFiles(rootDir, dir) {
822
843
  throw sourceCandidateInvariantError(`Local sync path is a symlink: ${relativePath}`);
823
844
  }
824
845
  if (metadata.isDirectory()) {
825
- files.push(...(await collectSyncFiles(rootDir, absolutePath)));
846
+ if (gitignore.ignores(`${relativePath}/`)) {
847
+ continue;
848
+ }
849
+ files.push(...(await collectSyncFiles(rootDir, absolutePath, gitignore)));
826
850
  continue;
827
851
  }
828
852
  if (metadata.isFile()) {
@@ -4,10 +4,10 @@
4
4
  "minimumCliVersion": "0.1.20",
5
5
  "entries": [
6
6
  {
7
- "repositoryCliVersion": "0.1.187",
7
+ "repositoryCliVersion": "0.1.190",
8
8
  "manifest": {
9
9
  "schemaVersion": 1,
10
- "bundleVersion": "2.0.179",
10
+ "bundleVersion": "2.0.182",
11
11
  "stepContractVersion": 3,
12
12
  "contractHash": "d761e91d5ac6ff9e72c6d49c5bcd014270912473a66f99c49d726c65998085cf",
13
13
  "managedFiles": [
@@ -45,7 +45,7 @@
45
45
  },
46
46
  {
47
47
  "path": "docs/funnelsgrove/migrations/step-contract-v3.md",
48
- "sha256": "78f4dd67e40f3df71556498b7f0181d271890fc74f2cb1ed758019474fa9eacd"
48
+ "sha256": "5bd252f15590bf572cc6de9ecc81a4cc7feb91b81da30d4d5d21b975c784686f"
49
49
  },
50
50
  {
51
51
  "path": "docs/funnelsgrove/qa/analytics.md",
@@ -145,16 +145,16 @@
145
145
  },
146
146
  {
147
147
  "path": "funnel-docs.config.json",
148
- "sha256": "29d2623179b0575918b755b7fbf0b92eab434a13412529a457b5032bce915e4e"
148
+ "sha256": "214e7ec12ee98953ead47de25c9996bfaae0fd54dd51bf2584b5605208953ce4"
149
149
  }
150
150
  ]
151
151
  }
152
152
  },
153
153
  {
154
- "repositoryCliVersion": "0.1.186",
154
+ "repositoryCliVersion": "0.1.189",
155
155
  "manifest": {
156
156
  "schemaVersion": 1,
157
- "bundleVersion": "2.0.178",
157
+ "bundleVersion": "2.0.181",
158
158
  "stepContractVersion": 3,
159
159
  "contractHash": "d761e91d5ac6ff9e72c6d49c5bcd014270912473a66f99c49d726c65998085cf",
160
160
  "managedFiles": [
@@ -192,7 +192,7 @@
192
192
  },
193
193
  {
194
194
  "path": "docs/funnelsgrove/migrations/step-contract-v3.md",
195
- "sha256": "bf512b458aa91f065c2fbb5b7a7fd383a429bb885fa043469f74e9f4ec7146fd"
195
+ "sha256": "63f67700b07ee2f08178dffb36268c656ccc27badce71a16e58f589406c36c4d"
196
196
  },
197
197
  {
198
198
  "path": "docs/funnelsgrove/qa/analytics.md",
@@ -292,16 +292,16 @@
292
292
  },
293
293
  {
294
294
  "path": "funnel-docs.config.json",
295
- "sha256": "7c42617a0545d2153fe648d00bfe7a29a30c86fb2894219b8ac06b5b722b55d5"
295
+ "sha256": "5d33fe78b05ceb590046abd1a81102a322654ad395b3e3253095bc5dc1b66ced"
296
296
  }
297
297
  ]
298
298
  }
299
299
  },
300
300
  {
301
- "repositoryCliVersion": "0.1.185",
301
+ "repositoryCliVersion": "0.1.188",
302
302
  "manifest": {
303
303
  "schemaVersion": 1,
304
- "bundleVersion": "2.0.177",
304
+ "bundleVersion": "2.0.180",
305
305
  "stepContractVersion": 3,
306
306
  "contractHash": "d761e91d5ac6ff9e72c6d49c5bcd014270912473a66f99c49d726c65998085cf",
307
307
  "managedFiles": [
@@ -339,7 +339,7 @@
339
339
  },
340
340
  {
341
341
  "path": "docs/funnelsgrove/migrations/step-contract-v3.md",
342
- "sha256": "2133deded0a7def2daddb8088edaf30d48d3c95cc5c286c33fc7900ce7a9fc1e"
342
+ "sha256": "db274d6e84f8317f8c408b5814695771c3ca1bcfea89023af3924ca2c1de7aac"
343
343
  },
344
344
  {
345
345
  "path": "docs/funnelsgrove/qa/analytics.md",
@@ -439,16 +439,16 @@
439
439
  },
440
440
  {
441
441
  "path": "funnel-docs.config.json",
442
- "sha256": "e3659725f67da962fae7a0f2f6ff744a2136c8bf92a83d17525f8bec87728dd0"
442
+ "sha256": "f9796ed44b6fb578e6bed91e5abd864965b340e2753d895124302c0294acb8a1"
443
443
  }
444
444
  ]
445
445
  }
446
446
  },
447
447
  {
448
- "repositoryCliVersion": "0.1.184",
448
+ "repositoryCliVersion": "0.1.187",
449
449
  "manifest": {
450
450
  "schemaVersion": 1,
451
- "bundleVersion": "2.0.176",
451
+ "bundleVersion": "2.0.179",
452
452
  "stepContractVersion": 3,
453
453
  "contractHash": "d761e91d5ac6ff9e72c6d49c5bcd014270912473a66f99c49d726c65998085cf",
454
454
  "managedFiles": [
@@ -486,7 +486,7 @@
486
486
  },
487
487
  {
488
488
  "path": "docs/funnelsgrove/migrations/step-contract-v3.md",
489
- "sha256": "35d12b515d897dcfcb39cb0408cc883913efea3a1b50e50cda69cc06e8f0648a"
489
+ "sha256": "78f4dd67e40f3df71556498b7f0181d271890fc74f2cb1ed758019474fa9eacd"
490
490
  },
491
491
  {
492
492
  "path": "docs/funnelsgrove/qa/analytics.md",
@@ -586,16 +586,16 @@
586
586
  },
587
587
  {
588
588
  "path": "funnel-docs.config.json",
589
- "sha256": "992b52e80b84dd2b6cf8f24eace1af9afbe63ba7ad4fb1d6135af4a186b81e4d"
589
+ "sha256": "29d2623179b0575918b755b7fbf0b92eab434a13412529a457b5032bce915e4e"
590
590
  }
591
591
  ]
592
592
  }
593
593
  },
594
594
  {
595
- "repositoryCliVersion": "0.1.183",
595
+ "repositoryCliVersion": "0.1.186",
596
596
  "manifest": {
597
597
  "schemaVersion": 1,
598
- "bundleVersion": "2.0.175",
598
+ "bundleVersion": "2.0.178",
599
599
  "stepContractVersion": 3,
600
600
  "contractHash": "d761e91d5ac6ff9e72c6d49c5bcd014270912473a66f99c49d726c65998085cf",
601
601
  "managedFiles": [
@@ -633,7 +633,7 @@
633
633
  },
634
634
  {
635
635
  "path": "docs/funnelsgrove/migrations/step-contract-v3.md",
636
- "sha256": "bb7904235bf9b73badb21b941553d202624fe7cac822920f8db3a78aa3301ecf"
636
+ "sha256": "bf512b458aa91f065c2fbb5b7a7fd383a429bb885fa043469f74e9f4ec7146fd"
637
637
  },
638
638
  {
639
639
  "path": "docs/funnelsgrove/qa/analytics.md",
@@ -733,16 +733,16 @@
733
733
  },
734
734
  {
735
735
  "path": "funnel-docs.config.json",
736
- "sha256": "c6fa4d70ddbc7acac4fe48a8880f917e4b5bd806e3c9dc29661114d735372223"
736
+ "sha256": "7c42617a0545d2153fe648d00bfe7a29a30c86fb2894219b8ac06b5b722b55d5"
737
737
  }
738
738
  ]
739
739
  }
740
740
  },
741
741
  {
742
- "repositoryCliVersion": "0.1.182",
742
+ "repositoryCliVersion": "0.1.185",
743
743
  "manifest": {
744
744
  "schemaVersion": 1,
745
- "bundleVersion": "2.0.174",
745
+ "bundleVersion": "2.0.177",
746
746
  "stepContractVersion": 3,
747
747
  "contractHash": "d761e91d5ac6ff9e72c6d49c5bcd014270912473a66f99c49d726c65998085cf",
748
748
  "managedFiles": [
@@ -780,7 +780,7 @@
780
780
  },
781
781
  {
782
782
  "path": "docs/funnelsgrove/migrations/step-contract-v3.md",
783
- "sha256": "436318472a3bd7ae27496165bb54447f72196882838f6ec5d5b2826627adf1cf"
783
+ "sha256": "2133deded0a7def2daddb8088edaf30d48d3c95cc5c286c33fc7900ce7a9fc1e"
784
784
  },
785
785
  {
786
786
  "path": "docs/funnelsgrove/qa/analytics.md",
@@ -880,16 +880,16 @@
880
880
  },
881
881
  {
882
882
  "path": "funnel-docs.config.json",
883
- "sha256": "8b013867efc9057ead19b31e66ab70c29cd43d679f39981685b1601a9c035de6"
883
+ "sha256": "e3659725f67da962fae7a0f2f6ff744a2136c8bf92a83d17525f8bec87728dd0"
884
884
  }
885
885
  ]
886
886
  }
887
887
  },
888
888
  {
889
- "repositoryCliVersion": "0.1.181",
889
+ "repositoryCliVersion": "0.1.184",
890
890
  "manifest": {
891
891
  "schemaVersion": 1,
892
- "bundleVersion": "2.0.173",
892
+ "bundleVersion": "2.0.176",
893
893
  "stepContractVersion": 3,
894
894
  "contractHash": "d761e91d5ac6ff9e72c6d49c5bcd014270912473a66f99c49d726c65998085cf",
895
895
  "managedFiles": [
@@ -927,7 +927,7 @@
927
927
  },
928
928
  {
929
929
  "path": "docs/funnelsgrove/migrations/step-contract-v3.md",
930
- "sha256": "36d1f275f63a96709e9b1b110bad475dfbfe09e93a3867b62db629c6f4be1535"
930
+ "sha256": "35d12b515d897dcfcb39cb0408cc883913efea3a1b50e50cda69cc06e8f0648a"
931
931
  },
932
932
  {
933
933
  "path": "docs/funnelsgrove/qa/analytics.md",
@@ -1027,7 +1027,7 @@
1027
1027
  },
1028
1028
  {
1029
1029
  "path": "funnel-docs.config.json",
1030
- "sha256": "a0531f4b5607e5fbfa53d43b0f05f3ebf58371e88c518e8a882293bbf838fda8"
1030
+ "sha256": "992b52e80b84dd2b6cf8f24eace1af9afbe63ba7ad4fb1d6135af4a186b81e4d"
1031
1031
  }
1032
1032
  ]
1033
1033
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@funnelsgrove/cli",
3
- "version": "0.1.187",
3
+ "version": "0.1.190",
4
4
  "description": "FunnelsGrove command-line tools for editing, syncing, and publishing funnels",
5
5
  "repository": {
6
6
  "type": "git",
@@ -34,13 +34,14 @@
34
34
  "test": "vitest run"
35
35
  },
36
36
  "dependencies": {
37
- "@funnelsgrove/runtime": "0.11.3",
37
+ "@funnelsgrove/runtime": "0.11.4",
38
38
  "commander": "^12.0.0",
39
+ "ignore": "^7.0.8",
39
40
  "typescript": "^5.8.3"
40
41
  },
41
42
  "devDependencies": {
42
- "@funnelsgrove/analytics": "0.1.87",
43
- "@funnelsgrove/payments": "0.11.16",
43
+ "@funnelsgrove/analytics": "0.1.88",
44
+ "@funnelsgrove/payments": "0.11.17",
44
45
  "vitest": "^3.0.0"
45
46
  }
46
47
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "bundleVersion": "2.0.179",
3
+ "bundleVersion": "2.0.182",
4
4
  "stepContractVersion": 3,
5
5
  "contractHash": "d761e91d5ac6ff9e72c6d49c5bcd014270912473a66f99c49d726c65998085cf",
6
6
  "managedFiles": [
@@ -38,7 +38,7 @@
38
38
  },
39
39
  {
40
40
  "path": "docs/funnelsgrove/migrations/step-contract-v3.md",
41
- "sha256": "78f4dd67e40f3df71556498b7f0181d271890fc74f2cb1ed758019474fa9eacd"
41
+ "sha256": "5bd252f15590bf572cc6de9ecc81a4cc7feb91b81da30d4d5d21b975c784686f"
42
42
  },
43
43
  {
44
44
  "path": "docs/funnelsgrove/qa/analytics.md",
@@ -138,7 +138,7 @@
138
138
  },
139
139
  {
140
140
  "path": "funnel-docs.config.json",
141
- "sha256": "29d2623179b0575918b755b7fbf0b92eab434a13412529a457b5032bce915e4e"
141
+ "sha256": "214e7ec12ee98953ead47de25c9996bfaae0fd54dd51bf2584b5605208953ce4"
142
142
  }
143
143
  ]
144
144
  }
@@ -17,7 +17,7 @@ Supported read versions: `1`, `2`, `3`. Authoring and publish target version `3`
17
17
 
18
18
  ### Package release order
19
19
 
20
- Release `@funnelsgrove/runtime` `0.11.3` first, then `@funnelsgrove/analytics` `0.1.87`, then `@funnelsgrove/payments` `0.11.16`. The production deploy verifies the zero-traffic API candidate, publishes and verifies `@funnelsgrove/cli` `0.1.187`, and only then promotes the candidate to production traffic. The serving API must never advertise an unpublished preferred CLI. Publishing packages and deploying production remain separately approved operational actions.
20
+ Release `@funnelsgrove/runtime` `0.11.4` first, then `@funnelsgrove/analytics` `0.1.88`, then `@funnelsgrove/payments` `0.11.17`. The production deploy verifies the zero-traffic API candidate, publishes and verifies `@funnelsgrove/cli` `0.1.190`, and only then promotes the candidate to production traffic. The serving API must never advertise an unpublished preferred CLI. Publishing packages and deploying production remain separately approved operational actions.
21
21
  <!-- funnelsgrove:generated:end contract-v3/migration/step-contract-v3 -->
22
22
 
23
23
  ## Version-last policy
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "bundleVersion": "2.0.179",
3
+ "bundleVersion": "2.0.182",
4
4
  "contractSource": "funnelsgrove-repository://apps/funnel-runtime/contracts/step-contract-v2.json",
5
5
  "fullyGenerated": [
6
6
  ".funnelsgrove-docs.json",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "bundleVersion": "2.0.179",
3
+ "bundleVersion": "2.0.182",
4
4
  "stepContractVersion": 3,
5
5
  "contractHash": "d761e91d5ac6ff9e72c6d49c5bcd014270912473a66f99c49d726c65998085cf",
6
6
  "managedFiles": [
@@ -38,7 +38,7 @@
38
38
  },
39
39
  {
40
40
  "path": "docs/funnelsgrove/migrations/step-contract-v3.md",
41
- "sha256": "78f4dd67e40f3df71556498b7f0181d271890fc74f2cb1ed758019474fa9eacd"
41
+ "sha256": "5bd252f15590bf572cc6de9ecc81a4cc7feb91b81da30d4d5d21b975c784686f"
42
42
  },
43
43
  {
44
44
  "path": "docs/funnelsgrove/qa/analytics.md",
@@ -138,7 +138,7 @@
138
138
  },
139
139
  {
140
140
  "path": "funnel-docs.config.json",
141
- "sha256": "29d2623179b0575918b755b7fbf0b92eab434a13412529a457b5032bce915e4e"
141
+ "sha256": "214e7ec12ee98953ead47de25c9996bfaae0fd54dd51bf2584b5605208953ce4"
142
142
  }
143
143
  ]
144
144
  }
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "sourceTreeHash": "be441cf3086e7b3dc6b72fdd263d7d3488332a5d557926e388a17934e199f916",
3
+ "sourceTreeHash": "c1e2aa1047c179acfc2ee3227837863536e222e7766bde1667cb5b939b743a48",
4
4
  "stepContractVersion": 3,
5
- "docsBundleVersion": "2.0.179",
5
+ "docsBundleVersion": "2.0.182",
6
6
  "files": [
7
7
  {
8
8
  "path": ".env.example",
@@ -16,7 +16,7 @@
16
16
  },
17
17
  {
18
18
  "path": ".funnelsgrove-docs.json",
19
- "sha256": "368db86bc68c66e8ac315e89ec57a117b8fb3fe97d9bf13197b18c0c827ef627",
19
+ "sha256": "5b8f0d968eda470e396ef4743e2e1fb4569b72838808fe1dd5424dc6ca1e45e7",
20
20
  "mode": "100644"
21
21
  },
22
22
  {
@@ -101,7 +101,7 @@
101
101
  },
102
102
  {
103
103
  "path": "docs/funnelsgrove/migrations/step-contract-v3.md",
104
- "sha256": "78f4dd67e40f3df71556498b7f0181d271890fc74f2cb1ed758019474fa9eacd",
104
+ "sha256": "5bd252f15590bf572cc6de9ecc81a4cc7feb91b81da30d4d5d21b975c784686f",
105
105
  "mode": "100644"
106
106
  },
107
107
  {
@@ -236,7 +236,7 @@
236
236
  },
237
237
  {
238
238
  "path": "funnel-docs.config.json",
239
- "sha256": "29d2623179b0575918b755b7fbf0b92eab434a13412529a457b5032bce915e4e",
239
+ "sha256": "214e7ec12ee98953ead47de25c9996bfaae0fd54dd51bf2584b5605208953ce4",
240
240
  "mode": "100644"
241
241
  },
242
242
  {
@@ -261,12 +261,12 @@
261
261
  },
262
262
  {
263
263
  "path": "package-lock.json",
264
- "sha256": "78b54a649ed9422d999adca4e7bc3ab908f52906e433c6f8e1ac8dd66112e0e3",
264
+ "sha256": "23aa7110e20f38e1a0da53147cfbd9eb640c9c23fd3d31735384bb90aa152b3f",
265
265
  "mode": "100644"
266
266
  },
267
267
  {
268
268
  "path": "package.json",
269
- "sha256": "3d17868b373a1dd668315601388f5a26b01e3ec893c6cca0c62dfa063113fcd4",
269
+ "sha256": "2d22866dce92e2369ef0dcc112f58120b5795a18eff5ca6032ddcaccdfca723c",
270
270
  "mode": "100644"
271
271
  },
272
272
  {
@@ -17,7 +17,7 @@ Supported read versions: `1`, `2`, `3`. Authoring and publish target version `3`
17
17
 
18
18
  ### Package release order
19
19
 
20
- Release `@funnelsgrove/runtime` `0.11.3` first, then `@funnelsgrove/analytics` `0.1.87`, then `@funnelsgrove/payments` `0.11.16`. The production deploy verifies the zero-traffic API candidate, publishes and verifies `@funnelsgrove/cli` `0.1.187`, and only then promotes the candidate to production traffic. The serving API must never advertise an unpublished preferred CLI. Publishing packages and deploying production remain separately approved operational actions.
20
+ Release `@funnelsgrove/runtime` `0.11.4` first, then `@funnelsgrove/analytics` `0.1.88`, then `@funnelsgrove/payments` `0.11.17`. The production deploy verifies the zero-traffic API candidate, publishes and verifies `@funnelsgrove/cli` `0.1.190`, and only then promotes the candidate to production traffic. The serving API must never advertise an unpublished preferred CLI. Publishing packages and deploying production remain separately approved operational actions.
21
21
  <!-- funnelsgrove:generated:end contract-v3/migration/step-contract-v3 -->
22
22
 
23
23
  ## Version-last policy
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "bundleVersion": "2.0.179",
3
+ "bundleVersion": "2.0.182",
4
4
  "contractSource": "funnelsgrove-repository://apps/funnel-runtime/contracts/step-contract-v2.json",
5
5
  "fullyGenerated": [
6
6
  ".funnelsgrove-docs.json",
@@ -8,9 +8,9 @@
8
8
  "name": "funnel-template",
9
9
  "version": "0.1.0",
10
10
  "dependencies": {
11
- "@funnelsgrove/analytics": "^0.1.87",
12
- "@funnelsgrove/payments": "^0.11.16",
13
- "@funnelsgrove/runtime": "^0.11.3",
11
+ "@funnelsgrove/analytics": "^0.1.88",
12
+ "@funnelsgrove/payments": "^0.11.17",
13
+ "@funnelsgrove/runtime": "^0.11.4",
14
14
  "@stripe/react-stripe-js": "^5.6.0",
15
15
  "@stripe/stripe-js": "^8.7.0",
16
16
  "lucide-react": "^0.553.0",
@@ -938,20 +938,20 @@
938
938
  }
939
939
  },
940
940
  "node_modules/@funnelsgrove/analytics": {
941
- "version": "0.1.87",
942
- "resolved": "https://registry.npmjs.org/@funnelsgrove/analytics/-/analytics-0.1.87.tgz",
943
- "integrity": "sha512-8NEV/AWckQBY+UfxfkCfp2ECethDuP3TN2F94AbocbRv9eEMIYQbGe+eYyKCiy5vKglHPgoLSqBufhR9WQBFzA==",
941
+ "version": "0.1.88",
942
+ "resolved": "https://registry.npmjs.org/@funnelsgrove/analytics/-/analytics-0.1.88.tgz",
943
+ "integrity": "sha512-C/iEVY5okn75AmYOJ5wvvNdXjfj62/mdaZkH3WAEL/qhdIaaHkq4ORPdQEHFTenOs9UH08qVty2/k3ShjS/O0Q==",
944
944
  "dependencies": {
945
- "@funnelsgrove/runtime": "0.11.3"
945
+ "@funnelsgrove/runtime": "0.11.4"
946
946
  }
947
947
  },
948
948
  "node_modules/@funnelsgrove/payments": {
949
- "version": "0.11.16",
950
- "resolved": "https://registry.npmjs.org/@funnelsgrove/payments/-/payments-0.11.16.tgz",
951
- "integrity": "sha512-ST9LGlHsIj7Oq+fFwdSK4G86ePUDqBQuoqaN7OIXfo2THT55kbqiQetrlM+ncRTAV2jKWlDMPcrXgDj7pu9MPg==",
949
+ "version": "0.11.17",
950
+ "resolved": "https://registry.npmjs.org/@funnelsgrove/payments/-/payments-0.11.17.tgz",
951
+ "integrity": "sha512-gzwRzJeQRGEKdspaGd2bivCn2OvymD2dPG0aAgd6wtzLmTC1bv0DhIhCNtVn4AZySnwEkVfwGKZ2a+07TwU75g==",
952
952
  "dependencies": {
953
953
  "@funnelsgrove/analytics": "^0.1.86",
954
- "@funnelsgrove/runtime": "^0.11.2",
954
+ "@funnelsgrove/runtime": "^0.11.4",
955
955
  "@solidgate/react-sdk": "1.34.0",
956
956
  "@stripe/react-stripe-js": "^5.6.0",
957
957
  "@stripe/stripe-js": "^8.7.0",
@@ -961,9 +961,9 @@
961
961
  }
962
962
  },
963
963
  "node_modules/@funnelsgrove/runtime": {
964
- "version": "0.11.3",
965
- "resolved": "https://registry.npmjs.org/@funnelsgrove/runtime/-/runtime-0.11.3.tgz",
966
- "integrity": "sha512-CD6zSdeRho2O4KqE7sfBZg3UPLWUjU7KblWnt91aL2+DAET55+S2Kz9zUqqV0UA2lWf3gw/3O3WPlKBxJjj00Q==",
964
+ "version": "0.11.4",
965
+ "resolved": "https://registry.npmjs.org/@funnelsgrove/runtime/-/runtime-0.11.4.tgz",
966
+ "integrity": "sha512-6DSeqQ/jQShq+35lnvvVlhYa8MolyZ7RGjYZbFa60TOyiCtVH8geEkJqos/AvvdzzpB1euflFVZURnMCiSf02Q==",
967
967
  "dependencies": {
968
968
  "posthog-js": "^1.369.2",
969
969
  "react": "19.2.3",
@@ -12,9 +12,9 @@
12
12
  "validate:funnel": "vite-node --config src/contract/funnel-validator.vite.config.ts src/contract/validate-funnel.cli.ts"
13
13
  },
14
14
  "dependencies": {
15
- "@funnelsgrove/analytics": "^0.1.87",
16
- "@funnelsgrove/payments": "^0.11.16",
17
- "@funnelsgrove/runtime": "^0.11.3",
15
+ "@funnelsgrove/analytics": "^0.1.88",
16
+ "@funnelsgrove/payments": "^0.11.17",
17
+ "@funnelsgrove/runtime": "^0.11.4",
18
18
  "@stripe/react-stripe-js": "^5.6.0",
19
19
  "@stripe/stripe-js": "^8.7.0",
20
20
  "lucide-react": "^0.553.0",