Разделы
Теги | RSS © 2008 – 2022
Контакты
email:
skype:
Вернуться
» » » gulp-selectors - плагин для gulp сокращает имена классов и id

gulp-selectors - плагин для gulp сокращает имена классов и id


var processors = {
        'css':  ['scss', 'css'],        // run the css processor on .scss and .css files 
        'html': ['haml'],               // run the html processor on .haml files 
        'js-strings':   ['js']          // run the js-strings plugin on js files 
    },
    ignores = {
        classes: ['hidden', 'active']   // ignore these class selectors, 
        ids: '*'                        // ignore all IDs 
    };
 
gs.run(processors, ignores);

https://www.npmjs.com/package/gulp-selectors и не забываем про Обзор полезных gulp плагинов
Оставить комментарий
Вверх