0.2.1 • Published 6 years ago

webpack-configify v0.2.1

Weekly downloads
3
License
MIT
Repository
-
Last release
6 years ago

webpack-configify

A (slightly opinionated) utility to make Webpack configuration less unwieldy.

Installation

npm install --save-dev webpack-configify
# or
yarn add --dev webpack-configify

Use

// file: webpack.config.js
const builder = require('webpack-configify')
const {isDevelopment, isProduction} = require('asenv')

module.exports = builder()
	.development(isDevelopment())
	.production(isProduction())
	.src('src/*.js')
	.dest('build/')
	.loader(['.js', '.jsx'], 'babel-loader', {
		presets: ['latest', 'react'],
	})
	.merge({/* ...your custom webpack configuration here... (uses webpack-merge) */})
	.build()

For further options/methods you can view the documentation.

License

ISC License (ISC) Copyright 2017 Jonathan Apodaca jrapodaca@gmail.com

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

0.2.1

6 years ago

0.2.0

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago