Skip to content

Commit a73f84b

Browse files
authored
chore(cli-lib-alpha): remove dependency on in-source compilation (#32500)
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. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 6e28ffe commit a73f84b

File tree

1 file changed

+1
-1
lines changed
  • packages/@aws-cdk/cli-lib-alpha/test/test-app

1 file changed

+1
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"app": "node app.js"
2+
"app": "ts-node app.ts"
33
}

0 commit comments

Comments
 (0)