intentcss-cli 0.1.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.
Files changed (39) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +21 -0
  3. package/dist/bin/intent.d.ts +8 -0
  4. package/dist/bin/intent.d.ts.map +1 -0
  5. package/dist/bin/intent.js +55 -0
  6. package/dist/bin/intent.js.map +1 -0
  7. package/dist/commands/compile.d.ts +14 -0
  8. package/dist/commands/compile.d.ts.map +1 -0
  9. package/dist/commands/compile.js +103 -0
  10. package/dist/commands/compile.js.map +1 -0
  11. package/dist/commands/generate.d.ts +14 -0
  12. package/dist/commands/generate.d.ts.map +1 -0
  13. package/dist/commands/generate.js +127 -0
  14. package/dist/commands/generate.js.map +1 -0
  15. package/dist/commands/init.d.ts +12 -0
  16. package/dist/commands/init.d.ts.map +1 -0
  17. package/dist/commands/init.js +398 -0
  18. package/dist/commands/init.js.map +1 -0
  19. package/dist/commands/migrate.d.ts +13 -0
  20. package/dist/commands/migrate.d.ts.map +1 -0
  21. package/dist/commands/migrate.js +155 -0
  22. package/dist/commands/migrate.js.map +1 -0
  23. package/dist/commands/validate.d.ts +13 -0
  24. package/dist/commands/validate.d.ts.map +1 -0
  25. package/dist/commands/validate.js +109 -0
  26. package/dist/commands/validate.js.map +1 -0
  27. package/dist/index.d.ts +14 -0
  28. package/dist/index.d.ts.map +1 -0
  29. package/dist/index.js +14 -0
  30. package/dist/index.js.map +1 -0
  31. package/dist/utils/config.d.ts +9 -0
  32. package/dist/utils/config.d.ts.map +1 -0
  33. package/dist/utils/config.js +46 -0
  34. package/dist/utils/config.js.map +1 -0
  35. package/dist/utils/diagnostics.d.ts +7 -0
  36. package/dist/utils/diagnostics.d.ts.map +1 -0
  37. package/dist/utils/diagnostics.js +9 -0
  38. package/dist/utils/diagnostics.js.map +1 -0
  39. package/package.json +56 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Intent Framework Contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # intent-cli
2
+
3
+ CLI tools for the [Intent](https://github.com/mixedmetals/intent-framework) styling framework.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install -D intent-cli
9
+ ```
10
+
11
+ ## Commands
12
+
13
+ ```bash
14
+ intent init # Initialize Intent in your project
15
+ intent compile # Compile design system to CSS
16
+ intent validate # Validate component usage against schema
17
+ intent migrate # Migrate from Tailwind (experimental)
18
+ intent generate # Generate AI-friendly documentation
19
+ ```
20
+
21
+ See the main repo for full documentation.
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env node
2
+ /**
3
+ * Intent CLI
4
+ *
5
+ * Command-line interface for the Intent styling framework.
6
+ */
7
+ export {};
8
+ //# sourceMappingURL=intent.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"intent.d.ts","sourceRoot":"","sources":["../../src/bin/intent.ts"],"names":[],"mappings":";AAEA;;;;GAIG"}
@@ -0,0 +1,55 @@
1
+ #!/usr/bin/env node
2
+ /**
3
+ * Intent CLI
4
+ *
5
+ * Command-line interface for the Intent styling framework.
6
+ */
7
+ import { program } from 'commander';
8
+ import { compileCommand } from '../commands/compile.js';
9
+ import { validateCommand } from '../commands/validate.js';
10
+ import { initCommand } from '../commands/init.js';
11
+ import { migrateCommand } from '../commands/migrate.js';
12
+ import { generateCommand } from '../commands/generate.js';
13
+ program
14
+ .name('intent')
15
+ .description('Intent - Schema-first, AI-native styling framework')
16
+ .version('0.1.0');
17
+ program
18
+ .command('compile')
19
+ .description('Compile design system to CSS and TypeScript')
20
+ .option('-c, --config <path>', 'Path to config file', 'intent.config.ts')
21
+ .option('-o, --output <dir>', 'Output directory', '.intent')
22
+ .option('-m, --minify', 'Minify CSS output', false)
23
+ .option('-w, --watch', 'Watch for changes', false)
24
+ .action(compileCommand);
25
+ program
26
+ .command('validate')
27
+ .description('Validate component usage against schema')
28
+ .option('-c, --config <path>', 'Path to config file', 'intent.config.ts')
29
+ .option('-f, --fix', 'Automatically fix issues where possible', false)
30
+ .option('--strict', 'Fail on warnings too', false)
31
+ .argument('[files...]', 'Files to validate (defaults to src/**/*.{tsx,jsx})')
32
+ .action(validateCommand);
33
+ program
34
+ .command('init')
35
+ .description('Initialize Intent in your project')
36
+ .option('-t, --template <name>', 'Template to use', 'default')
37
+ .option('-f, --force', 'Overwrite existing files', false)
38
+ .action(initCommand);
39
+ program
40
+ .command('migrate')
41
+ .description('Migrate from existing styling solution')
42
+ .requiredOption('--from <source>', 'Source framework (tailwind, css-modules)')
43
+ .option('-s, --src <dir>', 'Source directory', './src')
44
+ .option('-d, --dry-run', 'Show what would change without modifying files', false)
45
+ .action(migrateCommand);
46
+ program
47
+ .command('generate')
48
+ .description('Generate AI-friendly documentation')
49
+ .option('-c, --config <path>', 'Path to config file', 'intent.config.ts')
50
+ .option('-o, --output <dir>', 'Output directory', '.intent')
51
+ .option('--component <name>', 'Generate docs for specific component')
52
+ .option('--prompt', 'Generate AI prompt for Cursor/Claude', false)
53
+ .action(generateCommand);
54
+ program.parse();
55
+ //# sourceMappingURL=intent.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"intent.js","sourceRoot":"","sources":["../../src/bin/intent.ts"],"names":[],"mappings":";AAEA;;;;GAIG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAE1D,OAAO;KACJ,IAAI,CAAC,QAAQ,CAAC;KACd,WAAW,CAAC,oDAAoD,CAAC;KACjE,OAAO,CAAC,OAAO,CAAC,CAAC;AAEpB,OAAO;KACJ,OAAO,CAAC,SAAS,CAAC;KAClB,WAAW,CAAC,6CAA6C,CAAC;KAC1D,MAAM,CAAC,qBAAqB,EAAE,qBAAqB,EAAE,kBAAkB,CAAC;KACxE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,EAAE,SAAS,CAAC;KAC3D,MAAM,CAAC,cAAc,EAAE,mBAAmB,EAAE,KAAK,CAAC;KAClD,MAAM,CAAC,aAAa,EAAE,mBAAmB,EAAE,KAAK,CAAC;KACjD,MAAM,CAAC,cAAc,CAAC,CAAC;AAE1B,OAAO;KACJ,OAAO,CAAC,UAAU,CAAC;KACnB,WAAW,CAAC,yCAAyC,CAAC;KACtD,MAAM,CAAC,qBAAqB,EAAE,qBAAqB,EAAE,kBAAkB,CAAC;KACxE,MAAM,CAAC,WAAW,EAAE,yCAAyC,EAAE,KAAK,CAAC;KACrE,MAAM,CAAC,UAAU,EAAE,sBAAsB,EAAE,KAAK,CAAC;KACjD,QAAQ,CAAC,YAAY,EAAE,oDAAoD,CAAC;KAC5E,MAAM,CAAC,eAAe,CAAC,CAAC;AAE3B,OAAO;KACJ,OAAO,CAAC,MAAM,CAAC;KACf,WAAW,CAAC,mCAAmC,CAAC;KAChD,MAAM,CAAC,uBAAuB,EAAE,iBAAiB,EAAE,SAAS,CAAC;KAC7D,MAAM,CAAC,aAAa,EAAE,0BAA0B,EAAE,KAAK,CAAC;KACxD,MAAM,CAAC,WAAW,CAAC,CAAC;AAEvB,OAAO;KACJ,OAAO,CAAC,SAAS,CAAC;KAClB,WAAW,CAAC,wCAAwC,CAAC;KACrD,cAAc,CAAC,iBAAiB,EAAE,0CAA0C,CAAC;KAC7E,MAAM,CAAC,iBAAiB,EAAE,kBAAkB,EAAE,OAAO,CAAC;KACtD,MAAM,CAAC,eAAe,EAAE,gDAAgD,EAAE,KAAK,CAAC;KAChF,MAAM,CAAC,cAAc,CAAC,CAAC;AAE1B,OAAO;KACJ,OAAO,CAAC,UAAU,CAAC;KACnB,WAAW,CAAC,oCAAoC,CAAC;KACjD,MAAM,CAAC,qBAAqB,EAAE,qBAAqB,EAAE,kBAAkB,CAAC;KACxE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,EAAE,SAAS,CAAC;KAC3D,MAAM,CAAC,oBAAoB,EAAE,sCAAsC,CAAC;KACpE,MAAM,CAAC,UAAU,EAAE,sCAAsC,EAAE,KAAK,CAAC;KACjE,MAAM,CAAC,eAAe,CAAC,CAAC;AAE3B,OAAO,CAAC,KAAK,EAAE,CAAC"}
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Compile Command
3
+ *
4
+ * Compiles the design system to CSS and TypeScript definitions.
5
+ */
6
+ interface CompileOptions {
7
+ config: string;
8
+ output: string;
9
+ minify: boolean;
10
+ watch: boolean;
11
+ }
12
+ export declare function compileCommand(options: CompileOptions): Promise<void>;
13
+ export {};
14
+ //# sourceMappingURL=compile.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"compile.d.ts","sourceRoot":"","sources":["../../src/commands/compile.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AASH,UAAU,cAAc;IACtB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,OAAO,CAAC;IAChB,KAAK,EAAE,OAAO,CAAC;CAChB;AAED,wBAAsB,cAAc,CAAC,OAAO,EAAE,cAAc,GAAG,OAAO,CAAC,IAAI,CAAC,CA+G3E"}
@@ -0,0 +1,103 @@
1
+ /**
2
+ * Compile Command
3
+ *
4
+ * Compiles the design system to CSS and TypeScript definitions.
5
+ */
6
+ import fs from 'node:fs/promises';
7
+ import path from 'node:path';
8
+ import chalk from 'chalk';
9
+ import { compile } from 'intent-core/compiler';
10
+ import { loadConfig } from '../utils/config.js';
11
+ import { formatDiagnostics } from '../utils/diagnostics.js';
12
+ export async function compileCommand(options) {
13
+ console.log(chalk.blue('Intent'), chalk.gray('compiling design system...\n'));
14
+ const startTime = Date.now();
15
+ try {
16
+ // Load configuration
17
+ const config = await loadConfig(options.config);
18
+ // Compile
19
+ const compilerOptions = {
20
+ minify: options.minify,
21
+ outDir: options.output,
22
+ };
23
+ const result = await compile(config, compilerOptions);
24
+ // Ensure output directory exists
25
+ await fs.mkdir(options.output, { recursive: true });
26
+ // Write outputs
27
+ await Promise.all([
28
+ fs.writeFile(path.join(options.output, 'intent.css'), result.css),
29
+ fs.writeFile(path.join(options.output, 'types.d.ts'), result.types),
30
+ fs.writeFile(path.join(options.output, 'schema.ts'), result.runtime),
31
+ fs.writeFile(path.join(options.output, 'ai-manifest.json'), JSON.stringify(result.manifest, null, 2)),
32
+ ]);
33
+ // Print results
34
+ const duration = Date.now() - startTime;
35
+ if (result.success) {
36
+ console.log(chalk.green('✓'), 'Compiled successfully in', chalk.cyan(`${duration}ms`));
37
+ console.log();
38
+ console.log('Output files:');
39
+ console.log(' ', chalk.gray('→'), path.join(options.output, 'intent.css'));
40
+ console.log(' ', chalk.gray('→'), path.join(options.output, 'types.d.ts'));
41
+ console.log(' ', chalk.gray('→'), path.join(options.output, 'schema.ts'));
42
+ console.log(' ', chalk.gray('→'), path.join(options.output, 'ai-manifest.json'));
43
+ if (result.warnings.length > 0) {
44
+ console.log();
45
+ console.log(chalk.yellow('Warnings:'));
46
+ console.log(formatDiagnostics(result.warnings));
47
+ }
48
+ }
49
+ else {
50
+ console.log(chalk.red('✗'), 'Compilation failed');
51
+ console.log();
52
+ console.log(chalk.red('Errors:'));
53
+ console.log(formatDiagnostics(result.errors));
54
+ if (result.warnings.length > 0) {
55
+ console.log();
56
+ console.log(chalk.yellow('Warnings:'));
57
+ console.log(formatDiagnostics(result.warnings));
58
+ }
59
+ process.exit(1);
60
+ }
61
+ // Watch mode
62
+ if (options.watch) {
63
+ const { watch } = await import('chokidar');
64
+ console.log();
65
+ console.log(chalk.gray('Watching for changes...'));
66
+ const watcher = watch(options.config, { ignoreInitial: true });
67
+ watcher.on('change', async () => {
68
+ console.log();
69
+ console.log(chalk.gray('Config changed, recompiling...'));
70
+ try {
71
+ const newConfig = await loadConfig(options.config);
72
+ const newResult = await compile(newConfig, compilerOptions);
73
+ await Promise.all([
74
+ fs.writeFile(path.join(options.output, 'intent.css'), newResult.css),
75
+ fs.writeFile(path.join(options.output, 'types.d.ts'), newResult.types),
76
+ fs.writeFile(path.join(options.output, 'schema.ts'), newResult.runtime),
77
+ fs.writeFile(path.join(options.output, 'ai-manifest.json'), JSON.stringify(newResult.manifest, null, 2)),
78
+ ]);
79
+ if (newResult.success) {
80
+ console.log(chalk.green('✓'), 'Recompiled successfully');
81
+ }
82
+ else {
83
+ console.log(chalk.red('✗'), 'Recompilation failed');
84
+ console.log(formatDiagnostics(newResult.errors));
85
+ }
86
+ }
87
+ catch (error) {
88
+ console.error(chalk.red('Error:'), error);
89
+ }
90
+ });
91
+ // Keep process alive
92
+ process.on('SIGINT', () => {
93
+ watcher.close();
94
+ process.exit(0);
95
+ });
96
+ }
97
+ }
98
+ catch (error) {
99
+ console.error(chalk.red('Error:'), error instanceof Error ? error.message : error);
100
+ process.exit(1);
101
+ }
102
+ }
103
+ //# sourceMappingURL=compile.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"compile.js","sourceRoot":"","sources":["../../src/commands/compile.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Generate Command
3
+ *
4
+ * Generates AI-friendly documentation and prompts.
5
+ */
6
+ interface GenerateOptions {
7
+ config: string;
8
+ output: string;
9
+ component?: string;
10
+ prompt: boolean;
11
+ }
12
+ export declare function generateCommand(options: GenerateOptions): Promise<void>;
13
+ export {};
14
+ //# sourceMappingURL=generate.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"generate.d.ts","sourceRoot":"","sources":["../../src/commands/generate.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAQH,UAAU,eAAe;IACvB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,OAAO,CAAC;CACjB;AAED,wBAAsB,eAAe,CAAC,OAAO,EAAE,eAAe,GAAG,OAAO,CAAC,IAAI,CAAC,CAmE7E"}
@@ -0,0 +1,127 @@
1
+ /**
2
+ * Generate Command
3
+ *
4
+ * Generates AI-friendly documentation and prompts.
5
+ */
6
+ import fs from 'node:fs/promises';
7
+ import path from 'node:path';
8
+ import chalk from 'chalk';
9
+ import { generateAIManifest, generateAIPrompt } from 'intent-core';
10
+ import { loadConfig } from '../utils/config.js';
11
+ export async function generateCommand(options) {
12
+ console.log(chalk.blue('Intent'), chalk.gray('generating documentation...\n'));
13
+ try {
14
+ const config = await loadConfig(options.config);
15
+ const manifest = generateAIManifest(config);
16
+ await fs.mkdir(options.output, { recursive: true });
17
+ if (options.prompt) {
18
+ // Generate AI prompt for Cursor/Claude
19
+ const prompt = generateAIPrompt(manifest, {
20
+ component: options.component,
21
+ });
22
+ const outputPath = path.join(options.output, 'ai-prompt.md');
23
+ await fs.writeFile(outputPath, prompt);
24
+ console.log(chalk.green('✓'), 'Generated AI prompt:', chalk.cyan(outputPath));
25
+ console.log();
26
+ console.log(chalk.gray('Copy this file to your .cursorrules or paste into Claude:'));
27
+ console.log(chalk.cyan(` cat ${outputPath} | pbcopy`));
28
+ }
29
+ else if (options.component) {
30
+ // Generate docs for specific component
31
+ const component = manifest.components.find(c => c.name === options.component);
32
+ if (!component) {
33
+ console.log(chalk.red('Error:'), `Component "${options.component}" not found`);
34
+ console.log();
35
+ console.log('Available components:');
36
+ for (const c of manifest.components) {
37
+ console.log(` - ${chalk.cyan(c.name)}`);
38
+ }
39
+ process.exit(1);
40
+ }
41
+ const docs = generateComponentDocs(component);
42
+ const outputPath = path.join(options.output, `${options.component.toLowerCase()}.md`);
43
+ await fs.writeFile(outputPath, docs);
44
+ console.log(chalk.green('✓'), 'Generated component docs:', chalk.cyan(outputPath));
45
+ console.log();
46
+ console.log(docs);
47
+ }
48
+ else {
49
+ // Generate full manifest
50
+ const outputPath = path.join(options.output, 'ai-manifest.json');
51
+ await fs.writeFile(outputPath, JSON.stringify(manifest, null, 2));
52
+ console.log(chalk.green('✓'), 'Generated AI manifest:', chalk.cyan(outputPath));
53
+ console.log();
54
+ console.log('Components:');
55
+ for (const component of manifest.components) {
56
+ console.log(` ${chalk.cyan(component.name)}: ${component.description.slice(0, 60)}...`);
57
+ }
58
+ // Also generate prompt
59
+ const promptPath = path.join(options.output, 'ai-prompt.md');
60
+ await fs.writeFile(promptPath, generateAIPrompt(manifest));
61
+ console.log();
62
+ console.log(chalk.green('✓'), 'Generated AI prompt:', chalk.cyan(promptPath));
63
+ }
64
+ }
65
+ catch (error) {
66
+ console.error(chalk.red('Error:'), error instanceof Error ? error.message : error);
67
+ process.exit(1);
68
+ }
69
+ }
70
+ function generateComponentDocs(component) {
71
+ const lines = [];
72
+ lines.push(`# ${component.name}`);
73
+ lines.push('');
74
+ lines.push(component.description);
75
+ lines.push('');
76
+ lines.push('## Properties');
77
+ lines.push('');
78
+ for (const prop of component.properties) {
79
+ lines.push(`### \`${prop.name}\``);
80
+ lines.push('');
81
+ lines.push(`- **Type:** ${prop.type}`);
82
+ if (prop.values) {
83
+ lines.push(`- **Values:** ${prop.values.map(v => `\`${v}\``).join(', ')}`);
84
+ }
85
+ lines.push(`- **Required:** ${prop.required ? 'Yes' : 'No'}`);
86
+ if (prop.default !== undefined) {
87
+ lines.push(`- **Default:** \`${JSON.stringify(prop.default)}\``);
88
+ }
89
+ if (prop.description) {
90
+ lines.push(`- **Description:** ${prop.description}`);
91
+ }
92
+ lines.push('');
93
+ }
94
+ if (component.constraints.length > 0) {
95
+ lines.push('## Constraints');
96
+ lines.push('');
97
+ for (const constraint of component.constraints) {
98
+ lines.push(`- ${constraint}`);
99
+ }
100
+ lines.push('');
101
+ }
102
+ lines.push('## Examples');
103
+ lines.push('');
104
+ lines.push('### Valid Usage');
105
+ lines.push('');
106
+ for (const example of component.examples.valid) {
107
+ lines.push('```tsx');
108
+ lines.push(example);
109
+ lines.push('```');
110
+ lines.push('');
111
+ }
112
+ if (component.examples.invalid.length > 0) {
113
+ lines.push('### Invalid Usage (Avoid These)');
114
+ lines.push('');
115
+ for (const example of component.examples.invalid) {
116
+ lines.push('```tsx');
117
+ lines.push(example);
118
+ lines.push('```');
119
+ lines.push('');
120
+ }
121
+ }
122
+ lines.push('---');
123
+ lines.push('');
124
+ lines.push('*Generated by Intent CLI*');
125
+ return lines.join('\n');
126
+ }
127
+ //# sourceMappingURL=generate.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"generate.js","sourceRoot":"","sources":["../../src/commands/generate.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Init Command
3
+ *
4
+ * Initializes Intent in a new or existing project.
5
+ */
6
+ interface InitOptions {
7
+ template: string;
8
+ force: boolean;
9
+ }
10
+ export declare function initCommand(options: InitOptions): Promise<void>;
11
+ export {};
12
+ //# sourceMappingURL=init.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../src/commands/init.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAMH,UAAU,WAAW;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,OAAO,CAAC;CAChB;AAwTD,wBAAsB,WAAW,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAAC,IAAI,CAAC,CAqFrE"}