@@ -127,7 +127,7 @@ export class CDKDeployer implements BackendDeployer {
127
127
}
128
128
try {
129
129
await this . executeChildProcess (
130
- this . packageManager === 'npm' ? 'npx' : this . packageManager ,
130
+ this . packageManager === 'npm' ? 'npx' : this . packageManager , // TODO: once the e2e flow test is complete, we need to refactor this to use a ctor
131
131
[
132
132
'tsc' ,
133
133
'--showConfig' ,
@@ -142,7 +142,7 @@ export class CDKDeployer implements BackendDeployer {
142
142
}
143
143
try {
144
144
await this . executeChildProcess (
145
- this . packageManager === 'npm' ? 'npx' : this . packageManager ,
145
+ this . packageManager === 'npm' ? 'npx' : this . packageManager , // TODO: once the e2e flow test is complete, we need to refactor this to use a ctor
146
146
[
147
147
'tsc' ,
148
148
'--noEmit' ,
@@ -200,7 +200,7 @@ export class CDKDeployer implements BackendDeployer {
200
200
'--ci' ,
201
201
'--app' ,
202
202
`'${
203
- this . packageManager === 'npm' ? 'npx' : this . packageManager
203
+ this . packageManager === 'npm' ? 'npx' : this . packageManager // TODO: once the e2e flow test is complete, we need to refactor this to use a ctor
204
204
} tsx ${ this . backendLocator . locate ( ) } '`,
205
205
'--all' ,
206
206
'--output' ,
@@ -229,7 +229,7 @@ export class CDKDeployer implements BackendDeployer {
229
229
}
230
230
231
231
return await this . executeChildProcess (
232
- this . packageManager === 'npm' ? 'npx' : this . packageManager ,
232
+ this . packageManager === 'npm' ? 'npx' : this . packageManager , // TODO: once the e2e flow test is complete, we need to refactor this to use a ctor
233
233
cdkCommandArgs
234
234
) ;
235
235
} ;
0 commit comments