@ts-cloud/core 0.5.18 → 0.5.20

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/dist/index.js CHANGED
@@ -22295,11 +22295,11 @@ function createServerlessLaravelPreset(options) {
22295
22295
  // src/presets/dashboard.ts
22296
22296
  function createDashboardSite(options) {
22297
22297
  return {
22298
- root: options.root ?? "ui/dist",
22298
+ root: options.root ?? "packages/ui/dist",
22299
22299
  deploy: "server",
22300
22300
  type: "static",
22301
22301
  domain: options.domain,
22302
- build: options.build ?? "cd ui && bun install && bun run build",
22302
+ build: options.build ?? "cd packages/ui && bun install && bun run build",
22303
22303
  ssl: { provider: "letsencrypt" },
22304
22304
  auth: {
22305
22305
  username: options.username ?? "admin",
@@ -19,7 +19,7 @@ export declare function createDashboardSite(options: {
19
19
  password?: string;
20
20
  /** Basic-auth username. @default 'admin' */
21
21
  username?: string;
22
- /** Built UI output directory shipped to the box. @default 'ui/dist' */
22
+ /** Built UI output directory shipped to the box. @default 'packages/ui/dist' */
23
23
  root?: string;
24
24
  /** Build command producing {@link root}. @default builds @ts-cloud/ui */
25
25
  build?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ts-cloud/core",
3
- "version": "0.5.18",
3
+ "version": "0.5.20",
4
4
  "type": "module",
5
5
  "description": "Core CloudFormation generation library for ts-cloud",
6
6
  "author": "Chris Breuer <chris@stacksjs.com>",
@@ -31,7 +31,7 @@
31
31
  "typecheck": "tsc --noEmit"
32
32
  },
33
33
  "dependencies": {
34
- "@ts-cloud/aws-types": "0.5.18"
34
+ "@ts-cloud/aws-types": "0.5.20"
35
35
  },
36
36
  "devDependencies": {
37
37
  "typescript": "^5.9.3"