Skip to content

Commit

Permalink
fix(workflows): Add missing typescript packages (#3385)
Browse files Browse the repository at this point in the history
* move ts-node to dependencies; add typescript too

* fix: ts-node to dependencies; add typescript too

---------

Co-authored-by: Karl Weinmeister <11586922+kweinmeister@users.noreply.github.com>
  • Loading branch information
rogerthatdev and kweinmeister authored Aug 7, 2023
1 parent e15b968 commit 631541c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions workflows/quickstart/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@
"test": "mocha --loader=ts-node/esm --extension ts --timeout 600000 --exit"
},
"dependencies": {
"@google-cloud/workflows": "^2.3.1"
"@google-cloud/workflows": "^2.3.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.6",
"gts": "^5.0.0",
"mocha": "^10.2.0",
"ts-node": "^10.9.1"
"mocha": "^10.2.0"
}
}

0 comments on commit 631541c

Please sign in to comment.