Skip to content

Instantly share code, notes, and snippets.

@xtuc
Created March 12, 2017 20:12
Show Gist options
  • Save xtuc/4e4b212b74f76b1e82c489965862ffcf to your computer and use it in GitHub Desktop.
Save xtuc/4e4b212b74f76b1e82c489965862ffcf to your computer and use it in GitHub Desktop.
export default function ({file}) {
  let plugins = [];

  if (file === 'main.js') {
    plugins.push('transform-remove-console');
  }

  return {
    presets: ['es2015'],
    plugins
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment