Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.5 KiB
65 lines
1.5 KiB
#!/usr/bin/env node |
|
'use strict'; |
|
|
|
const fastGlob = require('fast-glob'); |
|
const Svgo = require('svgo'); |
|
const {resolve, parse} = require('path'); |
|
const {readFile, writeFile, mkdir} = require('fs').promises; |
|
|
|
const glob = (pattern) => fastGlob.sync(pattern, {cwd: resolve(__dirname), absolute: true}); |
|
const outputDir = resolve(__dirname, '../public/img/svg'); |
|
|
|
function exit(err) { |
|
if (err) console.error(err); |
|
process.exit(err ? 1 : 0); |
|
} |
|
|
|
async function processFile(file, {prefix = ''} = {}) { |
|
let name = parse(file).name; |
|
if (prefix) name = `${prefix}-${name}`; |
|
if (prefix === 'octicon') name = name.replace(/-[0-9]+$/, ''); // chop of '-16' on octicons |
|
|
|
const svgo = new Svgo({ |
|
plugins: [ |
|
{removeXMLNS: true}, |
|
{removeDimensions: true}, |
|
{ |
|
addClassesToSVGElement: { |
|
classNames: [ |
|
'svg', |
|
name, |
|
], |
|
}, |
|
}, |
|
{ |
|
addAttributesToSVGElement: { |
|
attributes: [ |
|
{'width': '16'}, |
|
{'height': '16'}, |
|
{'aria-hidden': 'true'}, |
|
], |
|
}, |
|
}, |
|
], |
|
}); |
|
|
|
const {data} = await svgo.optimize(await readFile(file, 'utf8')); |
|
await writeFile(resolve(outputDir, `${name}.svg`), data); |
|
} |
|
|
|
async function main() { |
|
try { |
|
await mkdir(outputDir); |
|
} catch {} |
|
|
|
for (const file of glob('../node_modules/@primer/octicons/build/svg/*-16.svg')) { |
|
await processFile(file, {prefix: 'octicon'}); |
|
} |
|
|
|
for (const file of glob('../web_src/svg/*.svg')) { |
|
await processFile(file); |
|
} |
|
} |
|
|
|
main().then(exit).catch(exit); |
|
|
|
|