New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

gulp-quick

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-quick

latest
Source
npmnpm
Version
1.0.6
Version published
Maintainers
1
Created
Source

Usage

Install

npm install --save-dev gulp-quick

Example


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

// auto reloading browser and sync with other browser
quick.sync({
	dist: './' // path to index.html page
});

// convert sass to css
quick.sass({
	style: 'compressed', // if you need to minify your css

	dist: './dist', // output css

	// watching sass file to livereload and other
	watch: [ 
		'./sass/**' 
	]
})

// collect you js
quick.js({
	browserify: true, // plugin for require() file like in node.js
	minify: true, // working with browserify
	main: './js/index.js', // main output file 
	dist: './dist', // output js
	
	// watch to livereload and auto collect js
	watch: [
		'./js/**'
	]
})

// Important. Run gulp
quick.run();

FAQs

Package last updated on 25 Mar 2016

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