mirror of
https://github.com/lipis/flag-icons.git
synced 2024-11-21 18:38:57 +01:00
35 lines
722 B
JavaScript
35 lines
722 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
{
|
|
name: "preset-default",
|
|
},
|
|
{
|
|
name: "prefixIds",
|
|
params: {
|
|
delim: "-",
|
|
prefix: (_, info) => {
|
|
if (info.path != null && info.path.length > 0) {
|
|
return getBasename(info.path).split(".")[0];
|
|
}
|
|
return "prefix";
|
|
},
|
|
},
|
|
},
|
|
"convertStyleToAttrs",
|
|
"removeDimensions",
|
|
"removeScriptElement",
|
|
"removeStyleElement",
|
|
"sortAttrs",
|
|
],
|
|
};
|
|
|
|
/**
|
|
* extract basename from path
|
|
* @see https://github.com/svg/svgo/blob/main/plugins/prefixIds.js
|
|
*/
|
|
const getBasename = (path) => {
|
|
const matched = path.match(/[/\\]?([^/\\]+)$/);
|
|
if (matched) return matched[1];
|
|
return "";
|
|
};
|