gulp-quick

1.0.6 • Public • Published

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();
 

/gulp-quick/

    Package Sidebar

    Install

    npm i gulp-quick

    Weekly Downloads

    1

    Version

    1.0.6

    License

    ISC

    Last publish

    Collaborators

    • devup