Skip to content

Commit

Permalink
chore(cli-lib-alpha): remove dependency on in-source compilation
Browse files Browse the repository at this point in the history
An integration test of `cli-lib-alpha` expects a test compilation
`app.ts` -> `app.js` to have happened.

In new projen-based repos, this isn't going to work, since we don't
compile the test directories at all and run them through `ts-node`
instead. Configure the test to use `ts-node` as well.
  • Loading branch information
rix0rrr committed Dec 12, 2024
1 parent 6e28ffe commit db41add
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/cli-lib-alpha/test/test-app/cdk.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"app": "node app.js"
"app": "ts-node app.ts"
}

0 comments on commit db41add

Please sign in to comment.