Skip to content

Commit

Permalink
fix(aws-cdk): fix ts-node usage on Windows (#2660)
Browse files Browse the repository at this point in the history
Fix an error when running any cdk command on Windows caused by '/' in ts-node path.
  • Loading branch information
Iamz authored and Elad Ben-Israel committed May 28, 2019
1 parent f4817b1 commit 5fe0af5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"app": "./node_modules/.bin/ts-node bin/%name%.ts"
"app": "npx ts-node bin/%name%.ts"
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"app": "./node_modules/.bin/ts-node bin/%name%.ts"
"app": "npx ts-node bin/%name%.ts"
}

0 comments on commit 5fe0af5

Please sign in to comment.