Skip to content

Commit

Permalink
chore(release): 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nicojs committed Dec 29, 2019
1 parent 8e46851 commit 537946a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,10 @@ language: node_js
node_js:
- "node"
- "lts/*"
install: npm install
script: npm run all
- "8"
script: npm run all
jobs:
include:
- name: "Mutation testing"
node_js: "node"
script: "npm run test:mutation"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "src/index.js",
"typings": "src/index.d.ts",
"scripts": {
"all": "npm run clean && npm run build && npm run lint && npm run test && npm run test:mutation",
"all": "npm run clean && npm run build && npm run lint && npm run test",
"clean": "rimraf src/**/*.js src/**/*.map src/**/*.d.ts test/**/*.js test/**/*.map test/**/*.d.ts",
"build": "tsc -p .",
"lint": "tslint -p .",
Expand Down
2 changes: 1 addition & 1 deletion stryker.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = function (config) {
'typescript'
],
testRunner: "mocha",
reporters: ["html", "progress"],
reporters: ["html", "progress", "dashboard"],
testFramework: "mocha",
mochaOptions: {
spec: ['test/helpers/**/*.js', 'test/unit/**/*.js']
Expand Down

0 comments on commit 537946a

Please sign in to comment.