UNPKG

@gobstones/gobstones-scripts

Version:

Scripts to abstract away build configuration of Gobstones Project's libraries and modules.

22 lines 737 B
/** * ---------------------------------------------------- * @module Tasks * @author Alan Rodas Bonjour <alanrodas@gmail.com> * ---------------------------------------------------- */ /** * Returns the string for the bash command to run * a multiples set of commands one after the other, * that is, the command to run serially a set of commands. * This involves joining all commands with '&&'. * * @param scripts - Any number of commands as strings. * * @example * series('eslint', 'jest', 'webpack --env.production') * // returns 'eslint && jest && webpack --env.production' * * @return The bash command string. */ export declare const serially: (...scripts: string[]) => string; //# sourceMappingURL=serially.d.ts.map