19 lines
719 B
JSON
19 lines
719 B
JSON
{
|
|
"name": "archive-monorepo",
|
|
"packageManager": "yarn@3.5.0",
|
|
"private": true,
|
|
"workspaces": [
|
|
"@tornado/*"
|
|
],
|
|
"scripts": {
|
|
"install:linux": "source .env && yarn",
|
|
"install:windows": "call .env.bat && yarn",
|
|
"git:publish:linux": "source .env && yarn workspaces foreach npm publish",
|
|
"git:publish:windows": "call .env.bat && yarn workspaces foreach npm publish",
|
|
"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"
|
|
}
|
|
}
|