@crossdelta/platform-sdk 0.4.3 → 0.4.41
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/README.md +2 -3
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -140,7 +140,6 @@ These principles guide every decision in `pf`:
|
|
|
140
140
|
- **🌊 DigitalOcean-first, cloud-agnostic later** — Start simple with DO, expand to AWS/GCP when needed
|
|
141
141
|
- **🤖 AI-augmented development** — Use AI to generate complete services, not just snippets
|
|
142
142
|
- **📏 Convention over configuration** — Strong opinions enable automation
|
|
143
|
-
|
|
144
143
|
<br />
|
|
145
144
|
|
|
146
145
|
---
|
|
@@ -233,12 +232,12 @@ You're building a new product from scratch and want to establish a solid foundat
|
|
|
233
232
|
|
|
234
233
|
```bash
|
|
235
234
|
# Step 1: Scaffold the workspace
|
|
236
|
-
bunx @crossdelta/platform-sdk new workspace my-platform
|
|
235
|
+
bunx @crossdelta/platform-sdk new workspace my-platform \
|
|
237
236
|
--github-owner my-platform \
|
|
238
237
|
--pulumi-stack dev \
|
|
239
238
|
-y
|
|
240
239
|
|
|
241
|
-
cd my-platform
|
|
240
|
+
cd my-platform
|
|
242
241
|
|
|
243
242
|
# Step 2: Configure infrastructure (optional)
|
|
244
243
|
# Edit infra/config.ts to customize:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crossdelta/platform-sdk",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.41",
|
|
4
4
|
"description": "CLI toolkit for scaffolding Turborepo workspaces with Pulumi infrastructure and Hono/NestJS microservices",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
"zx": "^8.5.3"
|
|
105
105
|
},
|
|
106
106
|
"peerDependencies": {
|
|
107
|
-
"@crossdelta/infrastructure": "
|
|
107
|
+
"@crossdelta/infrastructure": "latest",
|
|
108
108
|
"@nestjs/schematics": "^11.0.5",
|
|
109
109
|
"turbo": "^2.0.0"
|
|
110
110
|
},
|
|
@@ -121,6 +121,7 @@
|
|
|
121
121
|
"comment-json": "^4.4.1",
|
|
122
122
|
"esbuild": "^0.25.3",
|
|
123
123
|
"eslint": "^9.25.1",
|
|
124
|
+
"semantic-release": "^25.0.2",
|
|
124
125
|
"typescript": "^5.8.3",
|
|
125
126
|
"typescript-eslint": "^8.31.1",
|
|
126
127
|
"vitest": "^3.1.2"
|