@tsdevstack/cli 0.1.16 → 0.1.18

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,7 +1,7 @@
1
1
  /**
2
2
  * Build FrameworkConfig from init options
3
3
  *
4
- * Creates the initial config.json structure based on user's template and cloud choices.
4
+ * Creates the initial config.json structure based on user's template choice.
5
5
  */
6
6
  import type { FrameworkConfig } from '../config/types';
7
7
  import type { InitOptions } from './prompt-init-options';
@@ -7,18 +7,15 @@
7
7
  * @param args - CLI arguments (partial, missing fields are prompted)
8
8
  * @returns Complete InitOptions with all fields resolved
9
9
  */
10
- import { CLOUD_PROVIDERS } from '../../constants';
11
10
  export type InitTemplate = 'empty' | 'auth' | 'fullstack-auth';
12
11
  export interface InitCliArgs {
13
12
  name?: string;
14
13
  template?: string;
15
14
  frontendName?: string;
16
- cloud?: string;
17
15
  }
18
16
  export interface InitOptions {
19
17
  projectName: string;
20
18
  template: InitTemplate;
21
19
  frontendName: string | null;
22
- cloudProvider: (typeof CLOUD_PROVIDERS)[number] | null;
23
20
  }
24
21
  export declare function promptInitOptions(args: InitCliArgs): Promise<InitOptions>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsdevstack/cli",
3
- "version": "0.1.16",
3
+ "version": "0.1.18",
4
4
  "description": "CLI tools and code generators for tsdevstack framework",
5
5
  "author": "tsdevstack",
6
6
  "license": "MIT",