@absolutejs/absolute 0.19.0-beta.1017 → 0.19.0-beta.1019

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.
@@ -28,7 +28,7 @@ export type InstanceRecord = {
28
28
  source: InstanceSource;
29
29
  startedAt: string;
30
30
  };
31
- export type InstanceSource = 'dev' | 'standalone' | 'start' | 'workspace';
31
+ export type InstanceSource = 'compiled' | 'dev' | 'standalone' | 'start' | 'workspace';
32
32
  export type InstanceStatus = 'ready' | 'starting' | 'stopped';
33
33
  export type InteractiveHandler = {
34
34
  clearPrompt: () => void;
package/package.json CHANGED
@@ -349,6 +349,7 @@
349
349
  "dev": "TELEMETRY_OFF=1 bun run src/cli/index.ts dev example/server.ts --config example/absolute.config.ts",
350
350
  "format": "bun run src/cli/index.ts prettier --write",
351
351
  "lint": "bun run src/cli/index.ts eslint",
352
+ "ls": "bun run src/cli/index.ts ls",
352
353
  "release": "bun run test && bun run format && bun run build:native && bun run build && ./native/publish.sh && bun publish",
353
354
  "release:beta": "bun run test && bun run format && bun run build:native && bun run build && ./native/publish.sh --tag beta && bun publish --tag beta",
354
355
  "start": "TELEMETRY_OFF=1 bun run src/cli/index.ts start example/server.ts --outdir example/dist --config example/absolute.config.ts",
@@ -400,5 +401,5 @@
400
401
  ]
401
402
  }
402
403
  },
403
- "version": "0.19.0-beta.1017"
404
+ "version": "0.19.0-beta.1019"
404
405
  }