mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 02:35:49 +00:00
chore(madrun) add lint:stream
This commit is contained in:
parent
075568d3ec
commit
ba0179e62f
1 changed files with 4 additions and 1 deletions
|
|
@ -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';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue