UNPKG

outfitter

Version:

Command-line tool for equipping your development journey with configurations and fieldguides

11 lines 598 B
/** * Adds the specified fieldguides to the local configuration file, avoiding duplicates. * * Updates `.outfitter/config.json` in the current working directory by appending new fieldguides to the `fieldguides` array, removing the legacy `supplies` key if present. Only fieldguides not already listed are added. * * @param fieldguides - Names of fieldguides to add to the configuration. * * @remark Exits the process with code 1 if the configuration file does not exist. */ export declare function addFieldguides(fieldguides: Array<string>): Promise<void>; //# sourceMappingURL=add.d.ts.map