Skip to content

Commit

Permalink
chore(madrun) add lint:stream
Browse files Browse the repository at this point in the history
  • Loading branch information
coderaiser committed Dec 21, 2019
1 parent 075568d commit ba0179e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .madrun.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,15 @@ module.exports = {
'build:start': () => run(['build:client', 'start']),
'build:start:dev': () => run(['build:client:dev', 'start:dev']),
'lint:all': () => run(['lint', 'lint:css', 'spell']),
'lint:base': () => putout(names),
'lint:base': () => putout({
names,
}),
'lint:css': () => 'stylelint css/*.css',
'spell': () => 'yaspeller .',
'fix:lint': () => run(['lint', 'lint:css'], '--fix'),
'lint': () => run('lint:progress'),
'lint:progress': () => run('lint:base', '-f progress'),
'lint:stream': () => run('lint:base', '-f stream'),

'test:base': () => {
const cmd = 'tape';
Expand Down

0 comments on commit ba0179e

Please sign in to comment.