mirror of https://github.com/lukechilds/docs.git
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.
16 lines
546 B
16 lines
546 B
/* eslint-env node */
|
|
const glob = require('glob');
|
|
const util = require('./util');
|
|
const args = require('minimist')(process.argv);
|
|
|
|
const custom = args.c || args.custom || 'custom/*/icons';
|
|
const match = args.n || args.name || '([a-z]+)/icons$';
|
|
|
|
glob(custom, (err, folders) =>
|
|
folders.forEach(folder => {
|
|
|
|
const [, name] = folder.toString().match(new RegExp(match, 'i'));
|
|
util.compile('src/js/icons.js', `dist/js/uikit-icons-${name}`, {name, replaces: {ICONS: util.icons(`{src/images/icons,${folder}}/*.svg`)}});
|
|
|
|
})
|
|
);
|
|
|