Skip to content

Commit

Permalink
tsc: remove --verbose option
Browse files Browse the repository at this point in the history
Build output is cleaner without the verbose option. It was added in
order to get better feedback while building, but it turned out to just
clutter the terminal.

Signed-off-by: Paul Maréchal <paul.marechal@ericsson.com>
  • Loading branch information
paul-marechal committed Aug 25, 2020
1 parent 4390a7d commit cd66dd1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dev-packages/ext-scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"theia-monorepo-scripts": {
"ext:clean": "theiaext compile:clean && theiaext lint:clean && theiaext test:clean",
"ext:build": "concurrently -n compile,lint -c blue,green \"theiaext compile\" \"theiaext lint\"",
"ext:compile": "tsc -b compile.tsconfig.json --verbose",
"ext:compile": "tsc -b compile.tsconfig.json",
"ext:compile:clean": "rimraf lib *.tsbuildinfo",
"ext:lint": "eslint --cache=true --no-error-on-unmatched-pattern=true \"{src,test}/**/*.{ts,tsx}\"",
"ext:lint:clean": "rimraf .eslintcache",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"prepare:build": "yarn build && run lint && run build \"@theia/example-*\" --stream --parallel",
"prepare:hoisting": "theia check:hoisted -s",
"clean": "yarn lint:clean && node scripts/run-reverse-topo.js yarn clean",
"build": "tsc -b configs/root-compilation.tsconfig.json --verbose",
"build": "tsc -b configs/root-compilation.tsconfig.json",
"watch": "tsc -b configs/root-compilation.tsconfig.json -w",
"lint": "run lint",
"lint:clean": "rimraf .eslintcache",
Expand Down

0 comments on commit cd66dd1

Please sign in to comment.