@crossdelta/platform-sdk 0.5.8 → 0.5.10

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/README.md +2 -2
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -32,7 +32,7 @@
32
32
  ## 🚀 Quick Start
33
33
 
34
34
  ```bash
35
- # Create workspace
35
+ # Create workspace (works with npx/yarn/pnpm too)
36
36
  bunx @crossdelta/platform-sdk new workspace my-platform -y
37
37
  cd my-platform
38
38
 
@@ -41,7 +41,7 @@ cd my-platform
41
41
  bunx @crossdelta/platform-sdk new hono-micro services/orders --ai \
42
42
  -d "Handle order creation and payment processing"
43
43
 
44
- # Start all services
44
+ # Start all services (or: npm run dev)
45
45
  bun dev
46
46
  ```
47
47
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crossdelta/platform-sdk",
3
- "version": "0.5.8",
3
+ "version": "0.5.10",
4
4
  "description": "CLI toolkit for scaffolding Turborepo workspaces with Pulumi infrastructure and Hono/NestJS microservices",
5
5
  "keywords": [
6
6
  "cli",
@@ -16,6 +16,7 @@
16
16
  "devtools"
17
17
  ],
18
18
  "homepage": "https://www.npmjs.com/package/@crossdelta/platform-sdk",
19
+ "readme": "README.md",
19
20
  "preferGlobal": true,
20
21
  "bin": {
21
22
  "pf": "./bin/cli.js"