@chidchanun/bcp 0.1.2 → 0.1.3
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/CHANGELOG.md +13 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,13 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
All notable framework changes are tracked here before release.
|
|
4
4
|
|
|
5
|
+
## 0.1.3 - Interactive project setup
|
|
6
|
+
|
|
7
|
+
### create-bcp-app
|
|
8
|
+
|
|
9
|
+
- Added interactive project setup for Tailwind CSS and database selection.
|
|
10
|
+
- Database choices: None, MySQL, PostgreSQL, SQLite and MongoDB.
|
|
11
|
+
- Selected databases receive a starter `lib/database.ts`, environment examples and the matching Node.js driver without forcing an ORM.
|
|
12
|
+
- Tailwind selection adds Tailwind CSS/PostCSS dependencies plus starter configuration and `app/globals.css`.
|
|
13
|
+
- Added non-interactive `--tailwind`, `--no-tailwind`, `--database` and `--yes` flags for automation and CI.
|
|
14
|
+
- Generated TypeScript projects now include `lib/**/*.ts` in type checking.
|
|
15
|
+
- Added TypeScript declarations for the generator API and regression tests for optional project scaffolding.
|
|
16
|
+
|
|
5
17
|
## 0.1.2 - SSR Link hotfix
|
|
6
18
|
|
|
7
19
|
### Client routing
|
|
8
20
|
|
|
9
21
|
- Export `Link` through an SSR-safe implementation that uses `React.createElement` semantics without relying on a global `React` binding.
|
|
10
22
|
- Avoid the `ReferenceError: React is not defined` failure when a published BCP package is executed through `tsx` from `node_modules` during server-side rendering.
|
|
11
|
-
- Added
|
|
23
|
+
- Added SSR regression coverage for the public `Link` component across the client entrypoints.
|
|
12
24
|
|
|
13
25
|
## 0.1.1 - Packaging hotfix
|
|
14
26
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chidchanun/bcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
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",
|