yoyi-tools

1.3.12 • Public • Published

yoyi-tools

npm CircleCI npm download

Cross-project use, Helps you manage webpack configuration

Install

    npm install yoyi-tools 

Usage

yoyi-tools run start|server : start dev server 
yoyi-tools run build :  build 

Need to configure the entry

In package.json

 
config: {
    entry: '',     // require,  webpack entry for build dist, 
    port: 8002,     // dev server port, default 8002
    output:{},      // webpack output for build dist
    HtmlWebpackPluginConfig: {} //webpack plugin config for build dist 
}
 

Or in webpack.config.js

You can have a custom configuration, It will merge with the default configuration

    module.exports = function(defaultConfig) {
        
        defaultConfig.entry = {
            // entry
        }

         defaultConfig.entry = {
            // entry
        }
        
        defaultConfig.plugins = {
            // some plugins
        }
        // or
        defaultConfig.plugins.push(['other plugin'])
        ....
    }


Readme

Keywords

Package Sidebar

Install

npm i yoyi-tools

Weekly Downloads

1

Version

1.3.12

License

ISC

Unpacked Size

24.7 kB

Total Files

22

Last publish

Collaborators

  • scrivania