release: WRNexusJS 0.2.51

This commit is contained in:
2026-07-19 13:38:23 +05:30
parent 17dc7c1a06
commit df4c1d3e7d
203 changed files with 1713 additions and 237 deletions
+2 -2
View File
@@ -666,8 +666,8 @@ runs at dev-serve time and at `wrnexus build`, and returns the final CSS:
const config: AppConfig = {
styles: {
entry: "app/styles/global.css",
process: async ({ entryPath }) =>
await Bun.$`bunx @tailwindcss/cli -i ${entryPath} --minify`.text(),
process: async ({ entryPath, appRoot }) =>
await Bun.$.cwd(appRoot)`bunx @tailwindcss/cli -i ${entryPath} --minify`.text(),
},
};
```