Skip to content

Commit 9f7c58e

Browse files
committed
add TODO comments
1 parent a09a69a commit 9f7c58e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/backend-deployer/src/cdk_deployer.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ export class CDKDeployer implements BackendDeployer {
127127
}
128128
try {
129129
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
131131
[
132132
'tsc',
133133
'--showConfig',
@@ -142,7 +142,7 @@ export class CDKDeployer implements BackendDeployer {
142142
}
143143
try {
144144
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
146146
[
147147
'tsc',
148148
'--noEmit',
@@ -200,7 +200,7 @@ export class CDKDeployer implements BackendDeployer {
200200
'--ci',
201201
'--app',
202202
`'${
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
204204
} tsx ${this.backendLocator.locate()}'`,
205205
'--all',
206206
'--output',
@@ -229,7 +229,7 @@ export class CDKDeployer implements BackendDeployer {
229229
}
230230

231231
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
233233
cdkCommandArgs
234234
);
235235
};

0 commit comments

Comments
 (0)