archive-monorepo/package.json
T-Hax 6006120e60
Set up monorepo
Signed-off-by: T-Hax <>
2023-05-03 20:35:27 +00:00

15 lines
465 B
JSON

{
"name": "archive-monorepo",
"packageManager": "yarn@3.5.0",
"private": true,
"workspaces": [
"@tornado/*"
],
"scripts": {
"git:status": "ls -1 @tornado | xargs -I repl git -C @tornado/repl status",
"git:add": "ls -1 @tornado | xargs -I repl git -C @tornado/repl add .",
"git:commit": "ls -1 @tornado | xargs -I repl git -C @tornado/repl commit -sm ",
"git:log": "ls -1 @tornado | xargs -I repl git -C @tornado/repl log -n 1"
}
}