@fluid-app/fluid-cli-theme-dev 0.1.51 → 0.1.52
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.mjs +1 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
package/dist/index.mjs
CHANGED
|
@@ -2858,6 +2858,7 @@ async function startDevServer(api, theme, themeRoot, opts, onReady) {
|
|
|
2858
2858
|
const uploadedContent = await syncer.uploadFile(file, syncer.remoteSha(), { pendingAsset: true });
|
|
2859
2859
|
wroteRemote = true;
|
|
2860
2860
|
console.log(` ✓ synced ${file.relativePath} (${timestamp()})`);
|
|
2861
|
+
if (isStylesheetKey(file.relativePath)) console.warn(` ⚠ ${file.relativePath}: the storefront inlines this CSS from a published asset, so it serves the previous bytes until the stylesheet asset sync finishes`);
|
|
2861
2862
|
if (file.isLiquid && uploadedContent !== null && hasUnbalancedLiquidDelimiters(uploadedContent)) console.warn(` ⚠ ${file.relativePath}: unbalanced liquid delimiters — the storefront may silently serve stale content for this section`);
|
|
2862
2863
|
if (file.isLiquid && uploadedContent !== null) for (const diagnostic of findLiquidBlockTagDiagnostics(uploadedContent)) console.warn(` ⚠ ${file.relativePath}: ${diagnostic.message}`);
|
|
2863
2864
|
} catch (e) {
|