Skip to content

Commit bc3cd17

Browse files
committed
chore: remove AVA_VERBOSE
1 parent e7ed988 commit bc3cd17

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

Diff for: @commitlint/cli/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"prestart": "dep-check && npx yarn run build",
1212
"pretest": "dep-check && npx yarn run build",
1313
"start": "npx concurrently \"npx ava -c 4 --verbose --watch\" \"npx yarn run watch\"",
14-
"test": "npx ava -c 4 $AVA_VERBOSE",
14+
"test": "npx ava -c 4 --verbose",
1515
"watch": "npx babel src --out-dir lib --watch --source-maps"
1616
},
1717
"ava": {

Diff for: @commitlint/config-lerna-scopes/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Shareable commitlint config enforcing lerna package names as scopes",
55
"scripts": {
66
"start": "npx ava --watch --verbose",
7-
"test": "npx ava $AVA_VERBOSE",
7+
"test": "npx ava --verbose",
88
"clean": "exit 0"
99
},
1010
"xo": false,

Diff for: @commitlint/core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"clean": "npx rimraf lib",
99
"pretest": "dep-check",
1010
"start": "npx concurrently \"npx ava -c 4 --verbose --watch\" \"npx yarn run watch\"",
11-
"test": "npx ava -c 4 $AVA_VERBOSE",
11+
"test": "npx ava -c 4 --verbose",
1212
"watch": "npx babel src --out-dir lib --watch --source-maps"
1313
},
1414
"ava": {

Diff for: @commitlint/prompt/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"commit": "npx git-cz",
1010
"pretest": "dep-check",
1111
"start": "npx concurrently \"npx ava --watch --verbose\" \"npx yarn run watch\"",
12-
"test": "npx ava $AVA_VERBOSE",
12+
"test": "npx ava --verbose",
1313
"watch": "npx babel src --out-dir lib --watch --source-maps"
1414
},
1515
"ava": {

Diff for: @packages/babel-preset-commitlint/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"scripts": {
77
"pretest": "dep-check",
88
"start": "npx ava --watch --verbose",
9-
"test": "npx ava $AVA_VERBOSE"
9+
"test": "npx ava --verbose"
1010
},
1111
"ava": {
1212
"files": [

Diff for: @packages/test/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"scripts": {
88
"pretest": "dep-check",
99
"start": "npx concurrently \"npx ava --watch --verbose\" \"npx yarn run watch\"",
10-
"test": "npx ava $AVA_VERBOSE",
10+
"test": "npx ava --verbose",
1111
"build": "npx cross-env NODE_ENV=production npx babel src --out-dir lib --source-maps",
1212
"watch": "npx babel src --out-dir lib --watch --source-maps",
1313
"clean": "npx rimraf lib"

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"publish": "npx lerna publish --conventional-commits",
1616
"reinstall": "npm run clean && npm install",
1717
"start": "npx lerna run start --stream --parallel --include-filtered-dependencies",
18-
"test": "npx cross-env AVA_VERBOSE=--verbose npx lerna run test --stream --parallel --include-filtered-dependencies"
18+
"test": "npx cross-env npx lerna run test --stream --parallel --include-filtered-dependencies"
1919
},
2020
"lint-staged": {
2121
"*.js": [

0 commit comments

Comments
 (0)