All Projects → 1000ch → gulp-stylestats

1000ch / gulp-stylestats

Licence: other
Gulp task for StyleStats.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to gulp-stylestats

gulp-nunjucks-boilerplate
A scalable Gulp generated Nunjucks boilerplate.
Stars: ✭ 14 (-77.05%)
Mutual labels:  gulp
gulp-yarn
Automatically install node modules using Yarn. 😻
Stars: ✭ 22 (-63.93%)
Mutual labels:  gulp
gulp-spsync
Gulp plugin for synchronizing local files with a SharePoint library
Stars: ✭ 57 (-6.56%)
Mutual labels:  gulp
speedy
Development environment for static pages using Gulp - Pug & Sass & browser-sync & babelify & browserify
Stars: ✭ 13 (-78.69%)
Mutual labels:  gulp
Anchor-Bootstrap-UI-Kit
Anchor is a free Bootstrap UI Kit with flexible, ready to use UI components which will hep you build websites faster.
Stars: ✭ 69 (+13.11%)
Mutual labels:  gulp
beginner-windows-npm-gulp-webdev-tutorial
Beginner guide for users on web development with node.js/npm + gulp terminal commands. You'll learn how to use other terminal commands like git, gulp, bower, yarn, and more!
Stars: ✭ 40 (-34.43%)
Mutual labels:  gulp
devonthink-markdown-css
📘 Github markdown style adjusted for DEVONthink updated automatically.
Stars: ✭ 46 (-24.59%)
Mutual labels:  stylesheet
generator-yeomify-landing
Yeoman generator for landing project powered by Gulp
Stars: ✭ 29 (-52.46%)
Mutual labels:  gulp
ux-theming
Make UX theming in Mendix a lot easier
Stars: ✭ 22 (-63.93%)
Mutual labels:  gulp
gulp-convert-encoding
Plugin for gulp to convert files from one encoding to another.
Stars: ✭ 15 (-75.41%)
Mutual labels:  gulp
bulletproof-email
A Gulp workflow for maintainable email templates
Stars: ✭ 71 (+16.39%)
Mutual labels:  gulp
gulp-inject-partials
A recursive injection of partials based on their path name. Implementation of specific case of gulp-inject.
Stars: ✭ 26 (-57.38%)
Mutual labels:  gulp
modest-tsc-ng1-boilerplate
No description or website provided.
Stars: ✭ 36 (-40.98%)
Mutual labels:  gulp
generator-angular-pro
AngularJS project generator for scalable, enterprise-grade web and mobile applications
Stars: ✭ 43 (-29.51%)
Mutual labels:  gulp
tux
A baseline toolkit to ease the building of static HTML sites or integrating into templated CMS builds.
Stars: ✭ 34 (-44.26%)
Mutual labels:  gulp
brage-ghost-theme
A Ghost theme built with Gulp
Stars: ✭ 44 (-27.87%)
Mutual labels:  gulp
bootstrap-5-sass-gulp-4-boilerplate
A Bootstrap 5.0.0 boilerplate with bootstrap-icons, sass and gulp 4
Stars: ✭ 26 (-57.38%)
Mutual labels:  gulp
generator-zyy-h5
A lovely H5 template
Stars: ✭ 23 (-62.3%)
Mutual labels:  gulp
postcss-font-grabber
A postcss plugin, it grabs remote font files and update your CSS, just like that.
Stars: ✭ 26 (-57.38%)
Mutual labels:  gulp
generator-vintage-frontend
Modern front-end workflow
Stars: ✭ 15 (-75.41%)
Mutual labels:  gulp

gulp-stylestats

Gulp plugin for StyleStats.

Build Status NPM version Dependency Status devDependency Status

Install

Install via npm:

npm install gulp-stylestats --save-dev

Usage

This is gulpfile.js sample.

const gulp = require('gulp');
const stylestats = require('gulp-stylestats');

gulp.task('stylestats', function () {
  gulp.src('./fixtures/*.css')
    .pipe(stylestats({
      /* some stylestats options */
    }));
});

gulp.task('default', ['stylestats']);

Output StyleStats data (sample: JSON format).

const gulp = require('gulp');
const stylestats = require('gulp-stylestats');

gulp.task('stylestats', function () {
  gulp.src('./fixtures/*.css')
    .pipe(stylestats({
      type: 'json',
      outfile: true
      /* and some stylestats options */
    }))
    .pipe(gulp.dest('./stats/'));
});

gulp.task('default', ['stylestats']);

License

MIT © Shogo Sensui

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].