Socket
Socket
Sign inDemoInstall

kad-boilerplate

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kad-boilerplate

Some simple boiler plate so I don't have to rewrite build scripts every damn project.


Version published
Maintainers
1
Created
Source

kad-boilerplate

Some simple boiler plate so I don't have to rewrite build scripts every damn project.

Usage

This boilerplate relies on gulp being installed. So first run:

npm install --save-dev gulp kad-boilerplate

Then create gulpfile.js where you can configure the boilerplate:

var gulp = require('gulp');

require('kad-boilerplate')(gulp, {
  paths: {
    dest: 'lib',
    src: [
      'src/**/*.js',
      '!src/**/__tests__/**/*.js',
      '!src/**/__mocks__/**/*.js',
    ],
  },
});

Then in order to build your project simply run gulp from the command line.

Commands

build

Builds your project according to the src, dest, and babel options specified.

clean

Cleans the project based on dest option.

default

Alias for the build step so that gulp will work without any arguments.

dist

Compiles everything starting at the file ${entry} into ${dist}/${name}.js.

dist:min

Compiles everything starting at the file ${entry} into ${dist}/${name}.min.js, and minifies it using uglify.

FAQs

Package last updated on 08 Oct 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