UNPKG

dead-simple-curry

Version:
20 lines (18 loc) 335 B
const webpack = require('webpack'); const path = require('path'); module.exports = { entry: './index.js', output: { path: path.resolve(__dirname, 'dist'), filename: 'curry.js', libraryTarget: 'umd' }, module: { rules: [{ test: /\.js$/, use: [{ loader: 'babel-loader' }] }] } };