mithril-icon-builder
Version:
Converts SVG icons to Mithril elements.
29 lines (27 loc) • 831 B
JavaScript
/*
* Return path to write file to inside outputDir.
*
* @param {object} pathObj
* path objects from path.parse
*
* @param {string} innerPath
* Path (relative to options.svgDir) to svg file
* e.g. if svgFile was /home/user/icons/path/to/svg/file.svg
* options.svgDir is /home/user/icons/
* innerPath is path/to/svg
*
* @param {object} options
* @return {string} output file dest relative to outputDir
*/
function defaultDestRewriter(pathObj, innerPath, options) {
var path = require('path');
var fileName = pathObj.base;
if (options.fileSuffix) {
fileName.replace(options.fileSuffix, '.svg');
} else {
fileName = fileName.replace('.svg', '.js');
}
fileName = fileName.replace(/_/g, '-');
return path.join(innerPath, fileName);
}
module.exports = defaultDestRewriter;