Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

wbpk

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wbpk

Programmatic interface to webpack similar to Gulp

latest
npmnpm
Version
0.0.3
Version published
Maintainers
1
Created
Source

WBPK

Use webpack in a more programmatic way.

Usage

Create a wbpk.js file in your root directory.

// wbpk.js
var wbpk = require('wbpk').default;

var instance = new wbpk();

instance
.entry(__dirname + '/src/app.js')
.output(__dirname + '/dist/bundle.js')
.loaders([
    {
        test: /\.js$/,
        loader: 'babel-loader'
    }
])
.run(); // can also use .watch()

Then run wbpk to build / watch.

API

.config(config: object|string)

Load a pre-exisitng webpack config. Can be an object or a path to a webpack.config.js.

.entry(path: string|array)

Your entry point. Can be a string or an array of file paths. All files must be absolute (append __dirname).

.output(path: string)

Your files destination. Pass the whole filepath to where you want your build to go, including the filename and extension.

.loaders(loaders: object[])

What loaders to use. Right now these should be the same as you would pass to your webpack config. Know of a way to make this more user-friendly? Submit an issue or pull request.

.run()

Executes webpack to build based off of your config.

.watch(opts: object)

Tells webpack to watch for changes based on your config. All valid webpack watch config options can be passed here.

Keywords

webpack

FAQs

Package last updated on 12 Feb 2017

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