@stacksjs/cli 0.43.1 → 0.44.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.
@@ -1,4 +1,4 @@
1
- import type { CommandResult } from 'framework/buddy/src';
1
+ import type { CommandResult } from '@stacksjs/types';
2
2
  /**
3
3
  * Install an npm package.
4
4
  *
@@ -1,7 +1,7 @@
1
- import { italic } from "@stacksjs/cli";
2
1
  import { determineDebugMode } from "@stacksjs/config";
3
2
  import { ResultAsync } from "@stacksjs/error-handling";
4
3
  import { projectPath } from "@stacksjs/path";
4
+ import { italic } from "..//index.mjs";
5
5
  import { spawn } from "../command.mjs";
6
6
  import { startAnimation } from "../helpers.mjs";
7
7
  export function exec(command, options) {
package/dist/console.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- import { log } from '@stacksjs/x-ray';
1
+ import { log } from '@stacksjs/logging';
2
2
  declare const prompts: any;
3
3
  export { log, prompts };
package/dist/console.mjs CHANGED
@@ -1,4 +1,4 @@
1
- import { log } from "@stacksjs/x-ray";
1
+ import { log } from "@stacksjs/logging";
2
2
  import Prompts from "prompts";
3
3
  const { prompts } = Prompts;
4
4
  export { log, prompts };
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@stacksjs/cli",
3
3
  "type": "module",
4
- "version": "0.43.1",
5
- "packageManager": "pnpm@7.17.1",
4
+ "version": "0.44.7",
5
+ "packageManager": "pnpm@7.18.2",
6
6
  "description": "The simple way to create beautiful CLIs.",
7
7
  "author": "Chris Breuer",
8
8
  "license": "MIT",
@@ -41,7 +41,7 @@
41
41
  ],
42
42
  "engines": {
43
43
  "node": ">=v18.12.1",
44
- "pnpm": ">=7.17.1"
44
+ "pnpm": ">=7.18.2"
45
45
  },
46
46
  "peerDependencies": {
47
47
  "@antfu/install-pkg": "^0.1.1",
@@ -49,15 +49,16 @@
49
49
  "execa": "^6.1.0",
50
50
  "ora": "^6.1.2",
51
51
  "prompts": "^2.4.2",
52
- "@stacksjs/config": "0.43.1",
53
- "@stacksjs/path": "0.43.1",
54
- "@stacksjs/types": "0.43.1",
55
- "@stacksjs/x-ray": "0.43.1"
52
+ "@stacksjs/config": "0.44.7",
53
+ "@stacksjs/error-handling": "0.44.7",
54
+ "@stacksjs/logging": "0.44.7",
55
+ "@stacksjs/path": "0.44.7",
56
+ "@stacksjs/types": "0.44.7"
56
57
  },
57
58
  "devDependencies": {
58
59
  "esno": "^0.16.3",
59
60
  "mkdist": "^1.0.0",
60
- "@stacksjs/testing": "0.43.1"
61
+ "@stacksjs/testing": "0.44.7"
61
62
  },
62
63
  "scripts": {
63
64
  "build": "mkdist -d",