create-bunli 0.6.2 → 0.7.0
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/create-project.d.ts +5 -4
- package/package.json +4 -4
package/dist/create-project.d.ts
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { PromptApi, PromptSpinnerFactory } from '@bunli/core';
|
|
2
|
+
import type { Colors } from '@bunli/utils';
|
|
2
3
|
import type { CreateOptions } from './types.js';
|
|
3
4
|
import { Result } from 'better-result';
|
|
4
5
|
interface CreateProjectOptions extends CreateOptions {
|
|
5
6
|
name: string;
|
|
6
7
|
dir: string;
|
|
7
8
|
template: string;
|
|
8
|
-
prompt:
|
|
9
|
-
spinner:
|
|
10
|
-
colors:
|
|
9
|
+
prompt: PromptApi;
|
|
10
|
+
spinner: PromptSpinnerFactory;
|
|
11
|
+
colors: Colors;
|
|
11
12
|
shell: typeof Bun.$;
|
|
12
13
|
}
|
|
13
14
|
declare const UserCancelledError_base: import("better-result").TaggedErrorClass<"UserCancelledError", {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-bunli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Scaffold new Bunli CLI projects",
|
|
6
6
|
"bin": {
|
|
@@ -47,9 +47,9 @@
|
|
|
47
47
|
"prepublishOnly": "bun run build"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@bunli/core": "^0.
|
|
51
|
-
"@bunli/test": "^0.
|
|
52
|
-
"@bunli/utils": "^0.
|
|
50
|
+
"@bunli/core": "^0.8.0",
|
|
51
|
+
"@bunli/test": "^0.5.0",
|
|
52
|
+
"@bunli/utils": "^0.5.0",
|
|
53
53
|
"better-result": "^2.7.0",
|
|
54
54
|
"giget": "^2.0.0",
|
|
55
55
|
"zod": "^4.3.6"
|