@chidchanun/bcp 0.1.3 → 0.1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,19 @@
2
2
 
3
3
  All notable framework changes are tracked here before release.
4
4
 
5
+ ## 0.1.4 - Tailwind runtime fix
6
+
7
+ ### create-bcp-app
8
+
9
+ - Tailwind projects now install the official `@tailwindcss/cli` package and compile CSS before starting BCP.
10
+ - Development runs Tailwind in watch mode alongside `bcp dev` using `concurrently`.
11
+ - Production builds minify Tailwind CSS before `bcp build`.
12
+ - Generated Tailwind CSS is served through a framework API stylesheet endpoint with cache disabled during development.
13
+ - Root layout automatically links the generated stylesheet.
14
+ - Tailwind source detection is explicitly rooted at the generated project so utility classes in `app/` and other project files are discovered.
15
+ - Tailwind projects include starter utility classes so a fresh app visibly confirms that Tailwind is active.
16
+ - Fixed source generator metadata so local generator runs target `@chidchanun/bcp` instead of the unrelated unscoped `bcp` package.
17
+
5
18
  ## 0.1.3 - Interactive project setup
6
19
 
7
20
  ### create-bcp-app
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chidchanun/bcp",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "BCP Framework - a React full-stack framework with file-based routing, SSR, APIs, middleware, islands, caching and standalone production builds.",
5
5
  "type": "module",
6
6
  "license": "MIT",