-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Aleksey Avdeev
committed
Dec 21, 2017
1 parent
5358a9b
commit c2ea1e4
Showing
2 changed files
with
2 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,6 @@ node_js: | |
|
||
script: | ||
- npm run test | ||
- npm run build | ||
|
||
after_success: 'npm run coveralls' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,10 +21,9 @@ | |
"build": "rollup -c", | ||
"dev": "rollup -c -w", | ||
"lint": "eslint --ignore-path .gitignore .", | ||
"pretest": "npm run lint && npm run build && npm run size", | ||
"test": "jest --coverage", | ||
"test": "npm run lint && npm run build && npm run size && jest --coverage", | ||
"test:watch": "jest --watchAll", | ||
"prepublish": "npm test", | ||
"prepublish": "npm run test", | ||
"coveralls": "cat ./coverage/lcov.info | coveralls" | ||
}, | ||
"repository": "[email protected]:avdeev/vanilla-sharing.git", | ||
|