Skip to content

Instantly share code, notes, and snippets.

@jackpopp
Created October 12, 2018 14:05
Show Gist options
  • Save jackpopp/792d684d248b0d43149b3b0e1a166a68 to your computer and use it in GitHub Desktop.
Save jackpopp/792d684d248b0d43149b3b0e1a166a68 to your computer and use it in GitHub Desktop.
Code block 51.js for - test.md
// from this
if (process.env.NODE_ENV === 'production') {
module.exports = require('./cjs/react.production.min.js');
} else {
module.exports = require('./cjs/react.development.js');
}
// to this
{
module.exports = require('./cjs/react.development.js');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment