@slats/claude-assets-sync 0.3.3 → 0.3.4
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/claude-hashes.json
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"schemaVersion": 1,
|
|
3
3
|
"package": {
|
|
4
4
|
"name": "@slats/claude-assets-sync",
|
|
5
|
-
"version": "0.3.
|
|
5
|
+
"version": "0.3.4"
|
|
6
6
|
},
|
|
7
|
-
"generatedAt": "2026-04-
|
|
7
|
+
"generatedAt": "2026-04-26T13:16:42.341Z",
|
|
8
8
|
"algorithm": "sha256",
|
|
9
9
|
"assetRoot": "docs/claude",
|
|
10
10
|
"files": {
|
|
@@ -10,7 +10,7 @@ const STEPS = [
|
|
|
10
10
|
{ key: 'scope', label: 'scope', phases: ['scope-select'] },
|
|
11
11
|
{ key: 'plan', label: 'plan', phases: ['planning', 'diff-review', 'force-confirm'] },
|
|
12
12
|
{ key: 'apply', label: 'apply', phases: ['applying'] },
|
|
13
|
-
{ key: 'done', label: 'done', phases: [
|
|
13
|
+
{ key: 'done', label: 'done', phases: [] },
|
|
14
14
|
];
|
|
15
15
|
function stepState(phaseIndex, stepIndex) {
|
|
16
16
|
if (stepIndex < phaseIndex)
|
|
@@ -20,6 +20,8 @@ function stepState(phaseIndex, stepIndex) {
|
|
|
20
20
|
return 'pending';
|
|
21
21
|
}
|
|
22
22
|
function phaseToIndex(kind) {
|
|
23
|
+
if (kind === 'summary' || kind === 'error')
|
|
24
|
+
return STEPS.length;
|
|
23
25
|
for (let i = 0; i < STEPS.length; i += 1) {
|
|
24
26
|
const step = STEPS[i];
|
|
25
27
|
if (step.phases.includes(kind))
|
package/dist/utils/version.d.ts
CHANGED
package/dist/utils/version.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@slats/claude-assets-sync",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"description": "Shared CLI engine that lets consumer packages inject their Claude docs (skills, rules, commands) into a user's .claude directory via a thin bin/inject-docs wrapper.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude",
|