File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/cli/src/commands Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import yaml from 'js-yaml';
66import { Command } from 'commander' ;
77import { loadConfig , extractGroup , resolvePrefix } from '../config.js' ;
88import { getGlobalNextSeq } from '../utils/path-helpers.js' ;
9- import { buildVariableContext , resolveVariables } from '../utils/variable-resolver.js' ;
9+ import { buildVariableContext , resolveVariables , type VariableContext } from '../utils/variable-resolver.js' ;
1010import type { SpecPriority } from '../frontmatter.js' ;
1111import { normalizeDateFields } from '../frontmatter.js' ;
1212import { autoCheckIfEnabled } from './check.js' ;
@@ -178,7 +178,7 @@ export async function createSpec(name: string, options: {
178178
179179 // Load spec template from .lean-spec/templates/
180180 let content : string ;
181- let varContext : Record < string , unknown > ;
181+ let varContext : VariableContext ;
182182
183183 try {
184184 const template = await fs . readFile ( templatePath , 'utf-8' ) ;
You can’t perform that action at this time.
0 commit comments