Socket
Socket
Sign inDemoInstall

gulpzilla

Package Overview
Dependencies
12
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    gulpzilla

common gulp tasks to shaaaare


Version published
Maintainers
1
Created

Readme

Source

gulpzilla

Gulpzilla adds gulp [commands] to your gulp setup.

In gulpzilla v2.x.x, gulp jest and gulp sass are removed from default.
You can enable them by installing additional setup below:

By default, gulpzilla has 2 gulp commands ready

  1. gulp browserify
  2. gulp watch-browserify

Install

$ npm install gulpzilla --save-dev   

Usage

Add this in your gulpfile.js:

var gulp = require('gulpzilla')({

	/* enable/disable debug mode for browserify */
	debug: process.env.NODE_ENV !== 'production',

	/* `browserify` configuration  
	js: {
        srcDir: './src/js', // javascript source directory
        target: './src/js/index.js', // entry point for browserify

        distDir: './public/js', // directory for bundled javascript
        distFilename: 'bundle.js' // filename for bundled javascript
    }
    
    /* more configuration for additional setup: gulpzilla-[setup] */
});

Examples

$ git clone https://github.com/blacktangent/gulpzilla.git

Checkout examples/frontend directory to try out how gulpzilla setup is integrated with other setups. e.g. gulpzilla-jest, gulpzilla-sass, gulpzilla-disc

Keywords

FAQs

Last updated on 15 Jun 2016

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc