st-bundle
Version:
CLI for watching and bundling SpringType projects.
16 lines (15 loc) • 703 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FONT_EXTENSIONS = ['.ttf', '.otf', '.woff', '.woff2', '.eot'];
exports.IMAGE_EXTENSIONS = ['.png', '.jpeg', '.jpg', '.gif', '.bmp', '.svg'];
exports.ICO_EXTENSIONS = ['.ico'];
exports.STYLESHEET_EXTENSIONS = ['.css', '.scss', '.sass', '.less', '.styl'];
exports.DOCUMENT_EXTENSIONS = ['.pdf'];
exports.LINK_ASSUMPTION_EXTENSIONS = [
...exports.FONT_EXTENSIONS,
...exports.IMAGE_EXTENSIONS,
...exports.ICO_EXTENSIONS,
...exports.DOCUMENT_EXTENSIONS,
];
exports.TEXT_EXTENSIONS = ['.md', '.txt', '.html'];
exports.FTL_ELIGIBLE_EXTENSIONS = [...exports.TEXT_EXTENSIONS, ...exports.STYLESHEET_EXTENSIONS];