Skip to content
This repository was archived by the owner on May 5, 2024. It is now read-only.

Commit 9d2bd88

Browse files
committed
build: display colorized output for the lerna sub-packages
1 parent 22c39f5 commit 9d2bd88

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

packages/automatic-releases/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
},
1212
"scripts": {
1313
"build": "ncc build src/index.ts",
14-
"test": "jest",
14+
"test": "jest --color",
1515
"clean": "rm -rf node_modules yarn-error.log dist",
1616
"lint": "yarn run lint:eslint && yarn run lint:prettier",
17-
"lint:eslint": "eslint --max-warnings=0 $npm_package_config_eslintPaths",
18-
"lint:prettier": "prettier --list-different $npm_package_config_prettierPaths",
17+
"lint:eslint": "eslint --color --max-warnings=0 $npm_package_config_eslintPaths",
18+
"lint:prettier": "prettier --color --list-different $npm_package_config_prettierPaths",
1919
"lintfix": "yarn run lintfix:eslint && yarn run lintfix:prettier",
20-
"lintfix:eslint": "eslint --fix $npm_package_config_eslintPaths",
21-
"lintfix:prettier": "prettier --write $npm_package_config_prettierPaths"
20+
"lintfix:eslint": "eslint --color --fix $npm_package_config_eslintPaths",
21+
"lintfix:prettier": "prettier --color --write $npm_package_config_prettierPaths"
2222
},
2323
"dependencies": {
2424
"@actions/core": "^1.1.3",

packages/keybase-notifications/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
"scripts": {
1111
"preinstall": "./scripts/install_keybase_binary.sh",
1212
"build": "ncc build src/index.ts",
13-
"test": "jest",
13+
"test": "jest --color",
1414
"clean": "rm -rf node_modules yarn-error.log dist",
1515
"lint": "yarn run lint:eslint && yarn run lint:prettier",
16-
"lint:eslint": "eslint --max-warnings=0 $npm_package_config_eslintPaths",
17-
"lint:prettier": "prettier --list-different $npm_package_config_prettierPaths",
16+
"lint:eslint": "eslint --color --max-warnings=0 $npm_package_config_eslintPaths",
17+
"lint:prettier": "prettier --color --list-different $npm_package_config_prettierPaths",
1818
"lintfix": "yarn run lintfix:eslint && yarn run lintfix:prettier",
19-
"lintfix:eslint": "eslint --fix $npm_package_config_eslintPaths",
20-
"lintfix:prettier": "prettier --write $npm_package_config_prettierPaths"
19+
"lintfix:eslint": "eslint --color --fix $npm_package_config_eslintPaths",
20+
"lintfix:prettier": "prettier --color --write $npm_package_config_prettierPaths"
2121
},
2222
"dependencies": {
2323
"@actions/core": "^1.1.3",

0 commit comments

Comments
 (0)