@gobstones/gobstones-scripts
Version:
Scripts to abstract away build configuration of Gobstones Project's libraries and modules.
27 lines • 791 B
TypeScript
/**
* ----------------------------------------------------
* @module Tasks
* @author Alan Rodas Bonjour <alanrodas@gmail.com>
* ----------------------------------------------------
*/
/**
* This type represents the options that you can pass to the chmod task.
*/
export interface TaskChangelogOptions {
/**
* Generate the changelog from scratch.
*/
scratch: boolean;
}
/**
* Returns the string for the bash command to run
* a chmod command. Only working in unix based systems.
*
* @param options - The options applied when running the chmod.
*
* @example chmod({ files: './dist/files', mod: '+x' })
*
* @returns The bash command string.
*/
export declare const changelog: (options?: TaskChangelogOptions) => string;
//# sourceMappingURL=changelog.d.ts.map