Skip to content

Commit

Permalink
fix dependencies versions and ttsc compiler on cli
Browse files Browse the repository at this point in the history
  • Loading branch information
adriangmweb committed Mar 19, 2021
1 parent ce670f0 commit 353dd8e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions packages/cli/src/templates/project/package-json.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ export const template = `{
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"typescript": "^3.9.3",
"ts-node": "^8.6.2",
"typescript": "4.1.5",
"ts-node": "9.1.1",
"@types/node": "^13.5.1",
"ttypescript": "1.5.12",
"metadata-booster": "0.3.1"
Expand All @@ -39,7 +39,7 @@ export const template = `{
"scripts": {
"lint:check": "eslint --ext '.js,.ts' **/*.ts",
"lint:fix": "eslint --quiet --fix --ext '.js,.ts' **/*.ts",
"compile": "npx tsc -b tsconfig.json",
"compile": "npx ttypescript -b tsconfig.json",
"deploy": "boost deploy",
"clean": "npx rimraf ./dist tsconfig.tsbuildinfo",
"test": "npx nyc --extension .ts mocha --forbid-only \\"test/**/*.test.ts\\""
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/test/fixtures/mock_project/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"typescript": "^3.9.3",
"ts-node": "^8.6.2",
"typescript": "4.1.5",
"ts-node": "9.1.1",
"@types/node": "^13.5.1"
},
"engines": {
Expand Down

0 comments on commit 353dd8e

Please sign in to comment.