@absolutejs/absolute 0.19.0-beta.944 → 0.19.0-beta.945
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.js
CHANGED
|
@@ -21325,6 +21325,12 @@ var moduleServerPromise, getModuleServer = () => moduleServerPromise, runSequent
|
|
|
21325
21325
|
const { cssChanged } = await incrementalTailwindBuild(config.tailwind, state.resolvedPaths.buildDir, files, getStyleTransformConfig(config));
|
|
21326
21326
|
if (!cssChanged)
|
|
21327
21327
|
return;
|
|
21328
|
+
try {
|
|
21329
|
+
const outputPath = resolve39(state.resolvedPaths.buildDir, config.tailwind.output);
|
|
21330
|
+
const bytes = await Bun.file(outputPath).bytes();
|
|
21331
|
+
const webPath = `/${config.tailwind.output.replace(/^\/+/, "")}`;
|
|
21332
|
+
state.assetStore.set(webPath, bytes);
|
|
21333
|
+
} catch {}
|
|
21328
21334
|
broadcastToClients(state, {
|
|
21329
21335
|
data: { framework: "tailwind", manifest: state.manifest },
|
|
21330
21336
|
message: "Tailwind utilities recompiled",
|
|
@@ -32543,5 +32549,5 @@ export {
|
|
|
32543
32549
|
ANGULAR_INIT_TIMEOUT_MS
|
|
32544
32550
|
};
|
|
32545
32551
|
|
|
32546
|
-
//# debugId=
|
|
32552
|
+
//# debugId=0AB756D9EEFF95BC64756E2164756E21
|
|
32547
32553
|
//# sourceMappingURL=index.js.map
|