Skip to content
This repository was archived by the owner on Nov 16, 2019. It is now read-only.
This repository was archived by the owner on Nov 16, 2019. It is now read-only.

Dry property needed #20

@devrafalko

Description

@devrafalko

In many other webpack plugins I can control whether I want or not to run the plugin, eg:

plugins:[
  new somePlugin({
    dry: production, //process.env.NODE_ENV
  })
]

I don't want to run open-browser-webpack-plugin for each webpack execution, just for webpack-dev-server. For now, I concatenated the function for webpack.config.js plugins array

plugins: [
  //some static plugins
].concat(checkNodeEnv());

function checkNodeEnv(){
  if(process.env.NODE_ENV==='dev') return [new somePlugin({})];
}

that checks process.env.NODE_ENV and conditionally returns the array item with open-browser-webpack-plugin plugin, but it's quite tricky and not very handy.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions