@funnelsgrove/cli 0.1.189 → 0.1.194
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 +3 -1
- package/dist/localSync.js +28 -4
- package/funnel-contract-compatibility.json +28 -28
- package/package.json +5 -4
- package/template_docs/.funnelsgrove-docs.json +3 -3
- package/template_docs/docs/funnelsgrove/migrations/step-contract-v3.md +1 -1
- package/template_docs/funnel-docs.config.json +1 -1
- package/template_scaffold/.funnelsgrove-docs.json +3 -3
- package/template_scaffold/.funnelsgrove-scaffold.json +7 -7
- package/template_scaffold/docs/funnelsgrove/migrations/step-contract-v3.md +1 -1
- package/template_scaffold/funnel-docs.config.json +1 -1
- package/template_scaffold/package-lock.json +14 -14
- package/template_scaffold/package.json +3 -3
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.
|
|
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
|
|
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
|
|
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
|
-
|
|
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.
|
|
7
|
+
"repositoryCliVersion": "0.1.194",
|
|
8
8
|
"manifest": {
|
|
9
9
|
"schemaVersion": 1,
|
|
10
|
-
"bundleVersion": "2.0.
|
|
10
|
+
"bundleVersion": "2.0.186",
|
|
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": "
|
|
48
|
+
"sha256": "4e0c0c55609f48dae7e3b5f7da4b230d27e339d7f37c0a8d4d5a8db94f1a24d3"
|
|
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": "
|
|
148
|
+
"sha256": "5f8944565fdc87c9b31bc6861fec2c8a4fdc8543e373959eb1170e4b2ec27f16"
|
|
149
149
|
}
|
|
150
150
|
]
|
|
151
151
|
}
|
|
152
152
|
},
|
|
153
153
|
{
|
|
154
|
-
"repositoryCliVersion": "0.1.
|
|
154
|
+
"repositoryCliVersion": "0.1.193",
|
|
155
155
|
"manifest": {
|
|
156
156
|
"schemaVersion": 1,
|
|
157
|
-
"bundleVersion": "2.0.
|
|
157
|
+
"bundleVersion": "2.0.185",
|
|
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": "
|
|
195
|
+
"sha256": "f3205eefeee2364ea65a5e1af44b2beeee03cb6ae0ac3268688f776adc4539dd"
|
|
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": "
|
|
295
|
+
"sha256": "ea272c4d4fa77755713febca5599df2777de89ea88618b4694cbac5b695e2644"
|
|
296
296
|
}
|
|
297
297
|
]
|
|
298
298
|
}
|
|
299
299
|
},
|
|
300
300
|
{
|
|
301
|
-
"repositoryCliVersion": "0.1.
|
|
301
|
+
"repositoryCliVersion": "0.1.192",
|
|
302
302
|
"manifest": {
|
|
303
303
|
"schemaVersion": 1,
|
|
304
|
-
"bundleVersion": "2.0.
|
|
304
|
+
"bundleVersion": "2.0.184",
|
|
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": "
|
|
342
|
+
"sha256": "a268569114cf201a99b3c77fae5ab0f283624a384af80183f891eac860103881"
|
|
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": "
|
|
442
|
+
"sha256": "230185998780070e82dd46f4a6e7d245b44208347ef58e31cf809624051160a3"
|
|
443
443
|
}
|
|
444
444
|
]
|
|
445
445
|
}
|
|
446
446
|
},
|
|
447
447
|
{
|
|
448
|
-
"repositoryCliVersion": "0.1.
|
|
448
|
+
"repositoryCliVersion": "0.1.191",
|
|
449
449
|
"manifest": {
|
|
450
450
|
"schemaVersion": 1,
|
|
451
|
-
"bundleVersion": "2.0.
|
|
451
|
+
"bundleVersion": "2.0.183",
|
|
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": "
|
|
489
|
+
"sha256": "9db4c8970a791d3a9a3872d50b05b5355b2599ad73388f99a590fdbcfcb4116b"
|
|
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": "
|
|
589
|
+
"sha256": "cf36cbee381ff5ce3b306d38ae8f63b3c106015d1742e51ce9d9d272332821a5"
|
|
590
590
|
}
|
|
591
591
|
]
|
|
592
592
|
}
|
|
593
593
|
},
|
|
594
594
|
{
|
|
595
|
-
"repositoryCliVersion": "0.1.
|
|
595
|
+
"repositoryCliVersion": "0.1.190",
|
|
596
596
|
"manifest": {
|
|
597
597
|
"schemaVersion": 1,
|
|
598
|
-
"bundleVersion": "2.0.
|
|
598
|
+
"bundleVersion": "2.0.182",
|
|
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": "
|
|
636
|
+
"sha256": "5bd252f15590bf572cc6de9ecc81a4cc7feb91b81da30d4d5d21b975c784686f"
|
|
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": "
|
|
736
|
+
"sha256": "214e7ec12ee98953ead47de25c9996bfaae0fd54dd51bf2584b5605208953ce4"
|
|
737
737
|
}
|
|
738
738
|
]
|
|
739
739
|
}
|
|
740
740
|
},
|
|
741
741
|
{
|
|
742
|
-
"repositoryCliVersion": "0.1.
|
|
742
|
+
"repositoryCliVersion": "0.1.189",
|
|
743
743
|
"manifest": {
|
|
744
744
|
"schemaVersion": 1,
|
|
745
|
-
"bundleVersion": "2.0.
|
|
745
|
+
"bundleVersion": "2.0.181",
|
|
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": "
|
|
783
|
+
"sha256": "63f67700b07ee2f08178dffb36268c656ccc27badce71a16e58f589406c36c4d"
|
|
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": "
|
|
883
|
+
"sha256": "5d33fe78b05ceb590046abd1a81102a322654ad395b3e3253095bc5dc1b66ced"
|
|
884
884
|
}
|
|
885
885
|
]
|
|
886
886
|
}
|
|
887
887
|
},
|
|
888
888
|
{
|
|
889
|
-
"repositoryCliVersion": "0.1.
|
|
889
|
+
"repositoryCliVersion": "0.1.188",
|
|
890
890
|
"manifest": {
|
|
891
891
|
"schemaVersion": 1,
|
|
892
|
-
"bundleVersion": "2.0.
|
|
892
|
+
"bundleVersion": "2.0.180",
|
|
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": "
|
|
930
|
+
"sha256": "db274d6e84f8317f8c408b5814695771c3ca1bcfea89023af3924ca2c1de7aac"
|
|
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": "
|
|
1030
|
+
"sha256": "f9796ed44b6fb578e6bed91e5abd864965b340e2753d895124302c0294acb8a1"
|
|
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.
|
|
3
|
+
"version": "0.1.194",
|
|
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.
|
|
37
|
+
"@funnelsgrove/runtime": "0.11.5",
|
|
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.
|
|
43
|
-
"@funnelsgrove/payments": "0.11.
|
|
43
|
+
"@funnelsgrove/analytics": "0.1.90",
|
|
44
|
+
"@funnelsgrove/payments": "0.11.19",
|
|
44
45
|
"vitest": "^3.0.0"
|
|
45
46
|
}
|
|
46
47
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
|
-
"bundleVersion": "2.0.
|
|
3
|
+
"bundleVersion": "2.0.186",
|
|
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": "
|
|
41
|
+
"sha256": "4e0c0c55609f48dae7e3b5f7da4b230d27e339d7f37c0a8d4d5a8db94f1a24d3"
|
|
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": "
|
|
141
|
+
"sha256": "5f8944565fdc87c9b31bc6861fec2c8a4fdc8543e373959eb1170e4b2ec27f16"
|
|
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.
|
|
20
|
+
Release `@funnelsgrove/runtime` `0.11.5` first, then `@funnelsgrove/analytics` `0.1.90`, then `@funnelsgrove/payments` `0.11.19`. The production deploy verifies the zero-traffic API candidate, publishes and verifies `@funnelsgrove/cli` `0.1.194`, 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.
|
|
3
|
+
"bundleVersion": "2.0.186",
|
|
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": "
|
|
41
|
+
"sha256": "4e0c0c55609f48dae7e3b5f7da4b230d27e339d7f37c0a8d4d5a8db94f1a24d3"
|
|
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": "
|
|
141
|
+
"sha256": "5f8944565fdc87c9b31bc6861fec2c8a4fdc8543e373959eb1170e4b2ec27f16"
|
|
142
142
|
}
|
|
143
143
|
]
|
|
144
144
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
|
-
"sourceTreeHash": "
|
|
3
|
+
"sourceTreeHash": "c82c08c7154439e26bfcd9ac6d094096c7b34bb1f5e91e1e75b8baf28007829d",
|
|
4
4
|
"stepContractVersion": 3,
|
|
5
|
-
"docsBundleVersion": "2.0.
|
|
5
|
+
"docsBundleVersion": "2.0.186",
|
|
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": "
|
|
19
|
+
"sha256": "18a3db67bb2572042ecd0bfcd5fbe541ed632bc68b69036bdb650994d178f7d3",
|
|
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": "
|
|
104
|
+
"sha256": "4e0c0c55609f48dae7e3b5f7da4b230d27e339d7f37c0a8d4d5a8db94f1a24d3",
|
|
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": "
|
|
239
|
+
"sha256": "5f8944565fdc87c9b31bc6861fec2c8a4fdc8543e373959eb1170e4b2ec27f16",
|
|
240
240
|
"mode": "100644"
|
|
241
241
|
},
|
|
242
242
|
{
|
|
@@ -261,12 +261,12 @@
|
|
|
261
261
|
},
|
|
262
262
|
{
|
|
263
263
|
"path": "package-lock.json",
|
|
264
|
-
"sha256": "
|
|
264
|
+
"sha256": "6a9e160d0e0e5e079d8cfa5c4ee3e227e0a75aeb565f479e12f5004fb4915856",
|
|
265
265
|
"mode": "100644"
|
|
266
266
|
},
|
|
267
267
|
{
|
|
268
268
|
"path": "package.json",
|
|
269
|
-
"sha256": "
|
|
269
|
+
"sha256": "382094cbe213c12325ca5ba7d4b410b6a06febd3db477ff3e62cb87c9cc7eb6d",
|
|
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.
|
|
20
|
+
Release `@funnelsgrove/runtime` `0.11.5` first, then `@funnelsgrove/analytics` `0.1.90`, then `@funnelsgrove/payments` `0.11.19`. The production deploy verifies the zero-traffic API candidate, publishes and verifies `@funnelsgrove/cli` `0.1.194`, 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
|
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
"name": "funnel-template",
|
|
9
9
|
"version": "0.1.0",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@funnelsgrove/analytics": "^0.1.
|
|
12
|
-
"@funnelsgrove/payments": "^0.11.
|
|
13
|
-
"@funnelsgrove/runtime": "^0.11.
|
|
11
|
+
"@funnelsgrove/analytics": "^0.1.90",
|
|
12
|
+
"@funnelsgrove/payments": "^0.11.19",
|
|
13
|
+
"@funnelsgrove/runtime": "^0.11.5",
|
|
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.
|
|
942
|
-
"resolved": "https://registry.npmjs.org/@funnelsgrove/analytics/-/analytics-0.1.
|
|
943
|
-
"integrity": "sha512-
|
|
941
|
+
"version": "0.1.90",
|
|
942
|
+
"resolved": "https://registry.npmjs.org/@funnelsgrove/analytics/-/analytics-0.1.90.tgz",
|
|
943
|
+
"integrity": "sha512-uO2lUCOMAjqG9P2kGefIjYzLmrwi8OsPSBqjX729CSsSCVBzjEi4bzKkX2V7qk47XbmDQBUDrKKP2YJhpC1D9w==",
|
|
944
944
|
"dependencies": {
|
|
945
|
-
"@funnelsgrove/runtime": "0.11.
|
|
945
|
+
"@funnelsgrove/runtime": "0.11.5"
|
|
946
946
|
}
|
|
947
947
|
},
|
|
948
948
|
"node_modules/@funnelsgrove/payments": {
|
|
949
|
-
"version": "0.11.
|
|
950
|
-
"resolved": "https://registry.npmjs.org/@funnelsgrove/payments/-/payments-0.11.
|
|
951
|
-
"integrity": "sha512-
|
|
949
|
+
"version": "0.11.19",
|
|
950
|
+
"resolved": "https://registry.npmjs.org/@funnelsgrove/payments/-/payments-0.11.19.tgz",
|
|
951
|
+
"integrity": "sha512-7fqX5VcBaHEvc5PAVmtYe1dzMZh467IV/DugZMZwe//Gc0WmIjbxue32hZXtwr5541jdrJBRpyIN5fDfuKxppw==",
|
|
952
952
|
"dependencies": {
|
|
953
953
|
"@funnelsgrove/analytics": "^0.1.86",
|
|
954
|
-
"@funnelsgrove/runtime": "^0.11.
|
|
954
|
+
"@funnelsgrove/runtime": "^0.11.5",
|
|
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.
|
|
965
|
-
"resolved": "https://registry.npmjs.org/@funnelsgrove/runtime/-/runtime-0.11.
|
|
966
|
-
"integrity": "sha512-
|
|
964
|
+
"version": "0.11.5",
|
|
965
|
+
"resolved": "https://registry.npmjs.org/@funnelsgrove/runtime/-/runtime-0.11.5.tgz",
|
|
966
|
+
"integrity": "sha512-5IG4EWNALMcLEs7SCC1a7JPYHhdJ6vKE4jW5MjpI9U6xw0Rph4tay2HINybOlPZvrpTDpkjC4kevPXK8cIUmew==",
|
|
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.
|
|
16
|
-
"@funnelsgrove/payments": "^0.11.
|
|
17
|
-
"@funnelsgrove/runtime": "^0.11.
|
|
15
|
+
"@funnelsgrove/analytics": "^0.1.90",
|
|
16
|
+
"@funnelsgrove/payments": "^0.11.19",
|
|
17
|
+
"@funnelsgrove/runtime": "^0.11.5",
|
|
18
18
|
"@stripe/react-stripe-js": "^5.6.0",
|
|
19
19
|
"@stripe/stripe-js": "^8.7.0",
|
|
20
20
|
"lucide-react": "^0.553.0",
|