Skip to content

Commit

Permalink
chore(madrun) lint
Browse files Browse the repository at this point in the history
  • Loading branch information
coderaiser committed Nov 7, 2019
1 parent 9f3b0cf commit 3115c19
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
18 changes: 8 additions & 10 deletions .madrun.js
@@ -1,17 +1,15 @@
'use strict';

const {
run
} = require('madrun');
const {run} = require('madrun');

module.exports = {
"test": () => 'tape \'test/*.js\'',
"report": () => 'nyc report --reporter=text-lcov | coveralls',
"coverage": () => 'nyc npm test',
"watch:coverage": () => run('watcher', 'npm run coverage'),
"watch:test": () => run('watcher', 'npm test'),
"watcher": () => 'nodemon -w test -w lib --exec',
'test': () => 'tape \'test/*.js\'',
'report': () => 'nyc report --reporter=text-lcov | coveralls',
'coverage': () => 'nyc npm test',
'watch:coverage': () => run('watcher', 'npm run coverage'),
'watch:test': () => run('watcher', 'npm test'),
'watcher': () => 'nodemon -w test -w lib --exec',
'fix:lint': () => run('lint', '--fix'),
"lint": () => 'putout lib test',
'lint': () => 'putout lib test .madrun.js',
};

1 change: 1 addition & 0 deletions .travis.yml
@@ -1,5 +1,6 @@
language: node_js
node_js:
- 13
- 12
- 10

Expand Down
1 change: 0 additions & 1 deletion package.json
Expand Up @@ -40,7 +40,6 @@
"nyc": "^14.1.1",
"pullout": "^4.0.0",
"putout": "^7.0.1",
"redrun": "^7.0.2",
"supertape": "^1.2.3"
},
"keywords": [
Expand Down

0 comments on commit 3115c19

Please sign in to comment.