/meer-pack

a meer pack tools

Primary LanguageJavaScriptMIT LicenseMIT

a simple tool to pack js only

usage

  1. config your webpack
import pack from 'meer-pack'
pack({
    entry: './components/index.js',
    mode: 'development',
    outputConfig: {
        filename: 'bundle.js',
        path: '../dist'
    }
})
  1. build it
script: {
    'build': 'npm run build'
}