@@ -148,6 +148,8 @@ export type Config = {
148148 classBased? : boolean ;
149149 // Copy the generated component to the clipboard, instead of writing it to disk:
150150 copy? : boolean ;
151+ // The current working directory to run the component generator in:
152+ cwd? : string ;
151153 // Log the generated component to the console, instead of writing it to disk:
152154 log? : boolean ;
153155 // Generate a nested colocated component, e.g. `foo/bar/index.gts`:
@@ -160,6 +162,8 @@ export type Config = {
160162 " component-test" ? : {
161163 // Copy the generated component-test to the clipboard, instead of writing it to disk:
162164 copy? : boolean ;
165+ // The current working directory to run the component-test generator in:
166+ cwd? : string ;
163167 // Log the generated component-test to the console, instead of writing it to disk:
164168 log? : boolean ;
165169 // Generate a component-test at a custom path, e.g. `--path=src/-private`:
@@ -172,6 +176,8 @@ export type Config = {
172176 classBased? : boolean ;
173177 // Copy the generated helper to the clipboard, instead of writing it to disk:
174178 copy? : boolean ;
179+ // The current working directory to run the helper generator in:
180+ cwd? : string ;
175181 // Log the generated helper to the console, instead of writing it to disk:
176182 log? : boolean ;
177183 // Generate a helper at a custom path, e.g. `--path=src/-private`:
@@ -182,6 +188,8 @@ export type Config = {
182188 " helper-test" ? : {
183189 // Copy the generated helper-test to the clipboard, instead of writing it to disk:
184190 copy? : boolean ;
191+ // The current working directory to run the helper-test generator in:
192+ cwd? : string ;
185193 // Log the generated helper-test to the console, instead of writing it to disk:
186194 log? : boolean ;
187195 // Generate a helper-test at a custom path, e.g. `--path=src/-private`:
@@ -194,6 +202,8 @@ export type Config = {
194202 classBased? : boolean ;
195203 // Copy the generated modifier to the clipboard, instead of writing it to disk:
196204 copy? : boolean ;
205+ // The current working directory to run the modifier generator in:
206+ cwd? : string ;
197207 // Log the generated modifier to the console, instead of writing it to disk:
198208 log? : boolean ;
199209 // Generate a modifier at a custom path, e.g. `--path=src/-private`:
@@ -204,6 +214,8 @@ export type Config = {
204214 " modifier-test" ? : {
205215 // Copy the generated modifier-test to the clipboard, instead of writing it to disk:
206216 copy? : boolean ;
217+ // The current working directory to run the modifier-test generator in:
218+ cwd? : string ;
207219 // Log the generated modifier-test to the console, instead of writing it to disk:
208220 log? : boolean ;
209221 // Generate a modifier-test at a custom path, e.g. `--path=src/-private`:
@@ -214,6 +226,8 @@ export type Config = {
214226 service? : {
215227 // Copy the generated service to the clipboard, instead of writing it to disk:
216228 copy? : boolean ;
229+ // The current working directory to run the service generator in:
230+ cwd? : string ;
217231 // Log the generated service to the console, instead of writing it to disk:
218232 log? : boolean ;
219233 // Generate a service at a custom path, e.g. `--path=src/-private`:
@@ -224,6 +238,8 @@ export type Config = {
224238 " service-test" ? : {
225239 // Copy the generated service-test to the clipboard, instead of writing it to disk:
226240 copy? : boolean ;
241+ // The current working directory to run the service-test generator in:
242+ cwd? : string ;
227243 // Log the generated service-test to the console, instead of writing it to disk:
228244 log? : boolean ;
229245 // Generate a service-test at a custom path, e.g. `--path=src/-private`:
@@ -234,6 +250,8 @@ export type Config = {
234250 " acceptance-test" ? : {
235251 // Copy the generated acceptance-test to the clipboard, instead of writing it to disk:
236252 copy? : boolean ;
253+ // The current working directory to run the acceptance-test generator in:
254+ cwd? : string ;
237255 // Log the generated acceptance-test to the console, instead of writing it to disk:
238256 log? : boolean ;
239257 // Generate a acceptance-test at a custom path, e.g. `--path=src/-private`:
0 commit comments