UNPKG

simple-ps

Version:

A Simple Implementation of Production System.

15 lines (13 loc) 256 B
const path = require('path'); module.exports = { entry: './src/index.js', output: { path: path.resolve(__dirname, 'dist'), filename: 'simple-ps.js', library: { name: "SimplePS", type: "umd" }, }, mode: "production", };