@actuallyjamez/elysian 0.10.0 → 0.11.0

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.
@@ -392,7 +392,11 @@ export const devCommand = defineCommand({
392
392
  }
393
393
  ui.blank();
394
394
  if (liveConfig) {
395
- console.log(` ${pc.dim("➜")} ${pc.bold("API")} ${pc.cyan(liveConfig.apiEndpoint)}`);
395
+ console.log(` ${pc.dim("➜")} ${pc.bold("api")} ${pc.cyan(liveConfig.apiEndpoint)}`);
396
+ if (shouldGenerateOpenApi(config)) {
397
+ const openapiUrl = liveConfig.apiEndpoint.replace(/\/$/, "") + "/openapi";
398
+ console.log(` ${pc.dim("➜")} ${pc.bold("openapi")} ${pc.cyan(openapiUrl)}`);
399
+ }
396
400
  }
397
401
  }
398
402
  function watchFiles() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@actuallyjamez/elysian",
3
- "version": "0.10.0",
3
+ "version": "0.11.0",
4
4
  "description": "Automatic Lambda bundler for Elysia with API Gateway and Terraform integration",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",