How to use madrun - 10 common examples

To help you get started, we’ve selected a few madrun examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github coderaiser / redrun / lib / redrun.js View on Github external
function expand(scripts, type, str) {
    if (type === 'npm')
        return parseNpmRedrun(str, scripts);
    
    if (type === 'madrun') {
        const [cmd, args = ''] = str.split(' -- ');
        return madrun.run(cmd, args);
    }
    
    return redrunParse(str, scripts);
}
github cloudcmd / edward / .madrun.js View on Github external
    'fix:lint': () => run('lint', '--fix'),
    'watch:server': () => run('watcher', 'bin/edward.js package.json'),
github cloudcmd / console-io / .madrun.js View on Github external
    'fix:lint': () => run('lint', '--fix'),
};
github cloudcmd / deepword / .madrun.js View on Github external
    'fix:lint': () => run('lint', '--fix'),
    'lint': () => 'putout bin client server common madrun.js webpack.config.js',
github cloudcmd / dword / .madrun.js View on Github external
    'fix:lint': () => run('lint', '--fix'),
    'build-progress': () => 'webpack --progress',
github coderaiser / putout / packages / plugin-convert-for-each-to-for-of / .madrun.js View on Github external
    'watch:test': () => `nodemon -w lib -w test -x ${run('test')}`,
github coderaiser / putout / packages / babel-plugin-putout / .madrun.js View on Github external
    'watch:test': () => `nodemon -w src -w test -x ${run('test')}`,
    'lint': () => 'putout lib test .madrun.js',
github coderaiser / putout / packages / compare / .madrun.js View on Github external
    'watch:test': () => `nodemon -w lib -w test -x ${run('test')}`,
    'lint': () => `putout lib test .madrun.js`,
github coderaiser / putout / packages / eslint-plugin-putout / .madrun.js View on Github external
    'watch:test': () => `nodemon -w rules -x ${run('test')}`,
    'lint': () => 'putout lib .madrun.js',
github coderaiser / putout / packages / plugin-apply-destructuring / .madrun.js View on Github external
    'watch:test': () => `nodemon -w lib -w test -x ${run('test')}`,
    'lint': () => `putout lib test .madrun.js`,

madrun

CLI tool to run multiple npm-scripts in a madly comfortable way

MIT
Latest version published 3 months ago

Package Health Score

62 / 100
Full package analysis

Popular madrun functions