@fluid-app/fluid-cli-theme-dev 0.1.47 → 0.1.49
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 +14 -1
- package/dist/index.mjs +649 -322
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -39,7 +39,20 @@ The dev server will:
|
|
|
39
39
|
|
|
40
40
|
For a pulled theme, a newly created dev theme is a server-side reference clone
|
|
41
41
|
of the pulled source. It preserves theme content and DAM/ImageKit references,
|
|
42
|
-
so initial dev startup does not reseed every asset from the working copy.
|
|
42
|
+
so initial dev startup does not reseed every asset from the working copy. The
|
|
43
|
+
CLI keeps a compact local index of the development theme's acknowledged
|
|
44
|
+
checksums and version. Later startups validate that version, compare local files
|
|
45
|
+
to the cached dev state, and send only the actual changes without downloading
|
|
46
|
+
the complete remote resource index. A web-editor write, changed ImageKit
|
|
47
|
+
manifest, missing or malformed cache, or interrupted write invalidates the
|
|
48
|
+
shortcut and falls back to the full remote comparison. Set
|
|
49
|
+
`FLUID_THEME_DEV_DISABLE_SHADOW_SYNC=1` to force that comparison as an emergency
|
|
50
|
+
rollback.
|
|
51
|
+
|
|
52
|
+
Theme paths that differ only by letter case are refused before pull, push, or
|
|
53
|
+
dev writes. Windows separators are normalized before comparison. Default macOS
|
|
54
|
+
and Windows filesystems cannot preserve both resources, so continuing would
|
|
55
|
+
replace one path and delete the other.
|
|
43
56
|
|
|
44
57
|
| Flag | Default | Description |
|
|
45
58
|
| -------------------------- | ----------- | ----------------------------------------- |
|