Make root yarn scripts verbose

Prefixes output with package names
This commit is contained in:
willclarktech 2021-04-28 19:01:26 +02:00
parent bc71a10039
commit bcf769cf33
No known key found for this signature in database
GPG Key ID: 551A86E2E398ADF7

View File

@ -23,18 +23,18 @@
"packages/*"
],
"scripts": {
"format": "yarn workspaces foreach --topological-dev --parallel run format",
"format-text": "prettier --write \"./*.md\" && yarn workspaces foreach --topological-dev --parallel run format-text",
"format": "yarn workspaces foreach --topological-dev --parallel --verbose run format",
"format-text": "prettier --write \"./*.md\" && yarn workspaces foreach --topological-dev --parallel --verbose run format-text",
"format-shell": "shfmt -w scripts packages",
"lint": "yarn workspaces foreach --topological-dev --parallel run lint",
"lint-fix": "yarn workspaces foreach --topological-dev --parallel run lint-fix",
"test": "yarn workspaces foreach --topological-dev --parallel run test",
"test-firefox": "yarn workspaces foreach --topological-dev --parallel run test-firefox",
"test-chrome": "yarn workspaces foreach --topological-dev --parallel run test-chrome",
"coverage": "yarn workspaces foreach --topological-dev --parallel run coverage",
"build": "yarn workspaces foreach --topological-dev --parallel run build",
"docs": "yarn workspaces foreach --topological-dev --parallel run docs",
"pack-web": "yarn workspaces foreach --topological-dev --parallel run pack-web"
"lint": "yarn workspaces foreach --topological-dev --parallel --verbose run lint",
"lint-fix": "yarn workspaces foreach --topological-dev --parallel --verbose run lint-fix",
"test": "yarn workspaces foreach --topological-dev --parallel --verbose run test",
"test-firefox": "yarn workspaces foreach --topological-dev --parallel --verbose run test-firefox",
"test-chrome": "yarn workspaces foreach --topological-dev --parallel --verbose run test-chrome",
"coverage": "yarn workspaces foreach --topological-dev --parallel --verbose run coverage",
"build": "yarn workspaces foreach --topological-dev --parallel --verbose run build",
"docs": "yarn workspaces foreach --topological-dev --parallel --verbose run docs",
"pack-web": "yarn workspaces foreach --topological-dev --parallel --verbose run pack-web"
},
"devDependencies": {
"@cosmjs/amino": "workspace:packages/amino",