archive-monorepo/package.json

15 lines
465 B
JSON
Raw Normal View History

{
"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"
}
}