-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove ts-node-dev in templates (#208)
- Loading branch information
1 parent
01d503b
commit f1d3e72
Showing
4 changed files
with
11 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,6 @@ restate | |
restate.service({ | ||
name: "Greeter", | ||
handlers: { greet }, | ||
}) | ||
}), | ||
) | ||
.listen(9080); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,12 +10,11 @@ | |
"lint": "eslint --ignore-path .eslintignore --ext .ts .", | ||
"format": "prettier --ignore-path .eslintignore --write \"**/*.+(js|ts|json)\"", | ||
"verify": "npm run format -- --check && npm run lint && npm run build", | ||
"app-dev": "RESTATE_LOGGING=DEBUG RESTATE_DEBUG_LOGGING=JOURNAL ts-node-dev --respawn --transpile-only src/app/app.ts", | ||
"part1": "RESTATE_LOGGING=DEBUG RESTATE_DEBUG_LOGGING=JOURNAL ts-node-dev --respawn --transpile-only src/part1/app.ts", | ||
"part2": "RESTATE_LOGGING=DEBUG RESTATE_DEBUG_LOGGING=JOURNAL ts-node-dev --respawn --transpile-only src/part2/app.ts", | ||
"part3": "RESTATE_LOGGING=DEBUG RESTATE_DEBUG_LOGGING=JOURNAL ts-node-dev --respawn --transpile-only src/part3/app.ts", | ||
"part4": "RESTATE_LOGGING=DEBUG RESTATE_DEBUG_LOGGING=JOURNAL ts-node-dev --respawn --transpile-only src/part4/app.ts", | ||
"part5": "RESTATE_LOGGING=DEBUG RESTATE_DEBUG_LOGGING=JOURNAL ts-node-dev --respawn --transpile-only src/part5/app.ts" | ||
"app-dev": "RESTATE_LOGGING=DEBUG RESTATE_DEBUG_LOGGING=JOURNAL tsx watch src/app/app.ts", | ||
"part1": "RESTATE_LOGGING=DEBUG RESTATE_DEBUG_LOGGING=JOURNAL tsx watch src/part1/app.ts", | ||
"part2": "RESTATE_LOGGING=DEBUG RESTATE_DEBUG_LOGGING=JOURNAL tsx watch src/part2/app.ts", | ||
"part3": "RESTATE_LOGGING=DEBUG RESTATE_DEBUG_LOGGING=JOURNAL tsx watch src/part3/app.ts", | ||
"part4": "RESTATE_LOGGING=DEBUG RESTATE_DEBUG_LOGGING=JOURNAL tsx watch src/part4/app.ts" | ||
}, | ||
"author": "Restate Developers", | ||
"email": "[email protected]", | ||
|
@@ -30,6 +29,6 @@ | |
"esbuild": "^0.19.0", | ||
"eslint": "^8.46.0", | ||
"prettier": "^3.0.1", | ||
"ts-node-dev": "^2.0.0" | ||
"tsx": "^4.19.2" | ||
} | ||
} |