New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gulp-jstyle

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-jstyle

gulp plugin for jstyle

  • 0.1.0
  • unpublished
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

gulp-jstyle

Gulp plugin for jstyle.

Install

$ npm install --save-dev gulp-jstyle

You also need to have jstyle installed.

Usage

var gulp = require('gulp');
var jstyle = require('gulp-jstyle');

gulp.task('default', function () {
	return gulp.src('css.js')
		.pipe(jstyle({minifyClassNames: true}))
		.pipe(gulp.dest('build'));
});

API

jstyle(options)

options
executable

Type: String
Default: jstyle

Path to jstyle executable.

minifyClassNames

Type: Boolean
Default: false

Minify class names and generate json map with minified names.

closureMap

Type: Boolean
Default: false

Generate javascript file with minified class names for google-closure library.

closureMapPrefix

Type: String
Default: css.map

Package name prefix for closure map file.

Keywords

FAQs

Package last updated on 17 Aug 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc