Code Monkey home page Code Monkey logo

Comments (6)

colbyr avatar colbyr commented on July 20, 2024

@ron23 you could use webpack.DefinePlugin to create a condition that will be allowed to install immutable-devtools in the debug build but unreachable in the production build.

// webpack.config.js
var webpack = require('webpack');
module.exports = {
  // ...
  plugins: [
    new webpack.DefinePlugin({
      __DEV__: JSON.stringify(process.env.NODE_ENV !== 'production')
    })
  ],
};

In your source you'd have something like this...

// index.js
var immutable = require('immutable');
if (__DEV__) {
  var installDevTools = require('immutable-devtools');
  installDevTools(immutable);
}

When you set NODE_ENV=production, __DEV__ will be replaced with false.

NODE_ENV=production webpack index.js dist/index.min.js

generates

var immutable = require('immutable');
if (false) {
  var installDevTools = require('immutable-devtools');
  installDevTools(immutable);
}
// ...

And then by adding the -p shortcut to webpack for production mode which enables dead code elimination, the condition that requires immutable-devtools will be removed.

NODE_ENV=production webpack -p index.js
var immutable = require('immutable');
// ...

from immutable-devtools.

ron23 avatar ron23 commented on July 20, 2024

Nice! I thought about everything you said but I didn't know the magic -p !!! Thanks a lot!

from immutable-devtools.

colbyr avatar colbyr commented on July 20, 2024

@ron23 you're welcome! You can also get dead code elimination by adding the uglifyjs plugin new webpack.optimize.UglifyJsPlugin() to the plugins array in your webpack.config.js if you want to tune your production build.

from immutable-devtools.

ron23 avatar ron23 commented on July 20, 2024

Already using it, just didn't know about the dead code removal feature. Thanks a bunch!

from immutable-devtools.

langpavel avatar langpavel commented on July 20, 2024

Hi everybody!
This is something that Wiki is interested in :-)
Can anybody write shot paragraph about this in project wiki?

from immutable-devtools.

langpavel avatar langpavel commented on July 20, 2024

@ron23 Thanks! I've added section Using with webpack in Readme based on your comment

from immutable-devtools.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.