@absolutejs/absolute 0.13.6 → 0.13.7

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/cli/index.js CHANGED
@@ -42,12 +42,7 @@ var stopDatabase = async (scripts) => {
42
42
  };
43
43
  var dev = async (serverEntry) => {
44
44
  const usesDocker = existsSync(resolve(COMPOSE_PATH));
45
- let scripts = null;
46
- if (usesDocker) {
47
- await timed("Reading db scripts...", async () => {
48
- scripts = await readDbScripts();
49
- });
50
- }
45
+ const scripts = usesDocker ? await readDbScripts() : null;
51
46
  if (scripts)
52
47
  await startDatabase(scripts);
53
48
  const server = Bun.spawn(["bun", "--watch", serverEntry], {
package/package.json CHANGED
@@ -55,5 +55,5 @@
55
55
  "typecheck": "bun run tsc --noEmit"
56
56
  },
57
57
  "types": "./dist/index.d.ts",
58
- "version": "0.13.6"
58
+ "version": "0.13.7"
59
59
  }