Skip to content

Commit 3907aa5

Browse files
committedJan 2, 2021
[meta] run aud in posttest
1 parent fad6165 commit 3907aa5

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed
 

‎.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,7 @@
55
# Only apps should have lockfiles
66
yarn.lock
77
package-lock.json
8+
9+
# coverage data
10+
coverage/
11+
.nyc_output/

‎package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
"through": "~2.3.8"
2727
},
2828
"devDependencies": {
29+
"aud": "~1.1.5",
2930
"concat-stream": "^1.6.2",
3031
"eclint": "^2.8.1",
3132
"ecstatic": "^4.1.4",
@@ -40,7 +41,8 @@
4041
"lint": "eslint .",
4142
"pretest": "npm run lint",
4243
"test": "npm run tests-only",
43-
"tests-only": "tap test/*.js"
44+
"posttest": "aud --production",
45+
"tests-only": "nyc tap test/*.js"
4446
},
4547
"testling": {
4648
"files": "test/browser/*.js",

0 commit comments

Comments
 (0)
Please sign in to comment.