@absolutejs/absolute 0.13.9 → 0.13.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.
@@ -0,0 +1,5 @@
1
+ {
2
+ "permissions": {
3
+ "allow": ["WebSearch"]
4
+ }
5
+ }
package/dist/cli/index.js CHANGED
@@ -37,7 +37,8 @@ var stopDatabase = async (scripts) => {
37
37
  const start = performance.now();
38
38
  await $`${{ raw: scripts.downCommand }}`.quiet().nothrow();
39
39
  const duration = ((performance.now() - start) / 1000).toFixed(2);
40
- process.stdout.write(` \x1B[90m${duration}s\x1B[0m
40
+ const msg = `Stopping database container... \x1B[90m${duration}s\x1B[0m`;
41
+ process.stdout.write(`\r\x1B[2K${msg}
41
42
  `);
42
43
  };
43
44
  var dev = async (serverEntry) => {
@@ -55,9 +56,6 @@ var dev = async (serverEntry) => {
55
56
  if (cleaning)
56
57
  return;
57
58
  cleaning = true;
58
- if (scripts)
59
- process.stdout.write(`
60
- Stopping database container...`);
61
59
  try {
62
60
  server.kill();
63
61
  } catch (err) {
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.9"
58
+ "version": "0.13.10"
59
59
  }