mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-02-02 20:43:36 +00:00
style: fix formatting with Prettier
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import type { FeatureCount } from "./types";
|
||||
import type { FeatureCount } from './types';
|
||||
|
||||
// Delay before reloading spec file to ensure it's written to disk
|
||||
export const SPEC_FILE_WRITE_DELAY = 500;
|
||||
@@ -12,18 +12,18 @@ export const FEATURE_COUNT_OPTIONS: {
|
||||
label: string;
|
||||
warning?: string;
|
||||
}[] = [
|
||||
{ value: 20, label: "20" },
|
||||
{ value: 50, label: "50", warning: "May take up to 5 minutes" },
|
||||
{ value: 100, label: "100", warning: "May take up to 5 minutes" },
|
||||
{ value: 20, label: '20' },
|
||||
{ value: 50, label: '50', warning: 'May take up to 5 minutes' },
|
||||
{ value: 100, label: '100', warning: 'May take up to 5 minutes' },
|
||||
];
|
||||
|
||||
// Phase display labels for UI
|
||||
export const PHASE_LABELS: Record<string, string> = {
|
||||
initialization: "Initializing...",
|
||||
setup: "Setting up tools...",
|
||||
analysis: "Analyzing project structure...",
|
||||
spec_complete: "Spec created! Generating features...",
|
||||
feature_generation: "Creating features from roadmap...",
|
||||
complete: "Complete!",
|
||||
error: "Error occurred",
|
||||
initialization: 'Initializing...',
|
||||
setup: 'Setting up tools...',
|
||||
analysis: 'Analyzing project structure...',
|
||||
spec_complete: 'Spec created! Generating features...',
|
||||
feature_generation: 'Creating features from roadmap...',
|
||||
complete: 'Complete!',
|
||||
error: 'Error occurred',
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user