@crossdelta/platform-sdk 0.2.9 → 0.2.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/bin/cli.js +3 -2
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -154,10 +154,11 @@ app.get('/health', (c) => {
154
154
  return c.json({ status: 'ok' })
155
155
  })
156
156
 
157
- export default {
157
+
158
+ Bun.serve({
158
159
  port: Number(process.env.${t.toUpperCase().replace(/-/g,"_")}_PORT) || 8080,
159
160
  fetch: app.fetch,
160
- }
161
+ })
161
162
  `}function ez(){return`{
162
163
  "compilerOptions": {
163
164
  "target": "ES2022",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crossdelta/platform-sdk",
3
- "version": "0.2.9",
3
+ "version": "0.2.10",
4
4
  "description": "🚀 Crossdelta Platform SDK - build scalable projects faster",
5
5
  "bin": {
6
6
  "platform": "./bin/cli.js",