@microlight/core 0.11.3 → 0.11.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.
@@ -55,5 +55,18 @@ export async function prepareServer() {
55
55
  });
56
56
  console.log("Public assets copied successfully!");
57
57
  }
58
+
59
+ // Copy config files (postcss.config.mjs)
60
+ const configFiles = ["postcss.config.mjs"];
61
+ for (const configFile of configFiles) {
62
+ const srcPath = path.join(coreRoot, configFile);
63
+ const destPath = path.join(serverDestDir, configFile);
64
+ if (fs.existsSync(srcPath)) {
65
+ copySync(srcPath, destPath, {
66
+ overwrite: true
67
+ });
68
+ console.log(`Copied ${configFile}`);
69
+ }
70
+ }
58
71
  console.log("Server files copied successfully!");
59
72
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microlight/core",
3
- "version": "0.11.3",
3
+ "version": "0.11.4",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "scripts": {
@@ -25,7 +25,8 @@
25
25
  "bin",
26
26
  "src/app/globals.css",
27
27
  "src/app/favicon.ico",
28
- "public"
28
+ "public",
29
+ "postcss.config.mjs"
29
30
  ],
30
31
  "bin": {
31
32
  "microlight-core": "./bin/microlight-core.js"
@@ -0,0 +1,7 @@
1
+ const config = {
2
+ plugins: {
3
+ "@tailwindcss/postcss": {},
4
+ },
5
+ };
6
+
7
+ export default config;