Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sviatoslav-lebediev/38c4c5fa1d78986774e8ed044a7cd2de to your computer and use it in GitHub Desktop.
Save sviatoslav-lebediev/38c4c5fa1d78986774e8ed044a7cd2de to your computer and use it in GitHub Desktop.
const MODULE_DIR = /(.*([\/\\]node_modules|\.\.)[\/\\](@[^\/\\]+[\/\\])?[^\/\\]+)([\/\\].*)?$/g;
{
loader: 'babel-loader',
test: /\.jsx?$/,
include(filepath) {
if (filepath.split(/[/\\]/).indexOf('node_modules')===-1) return true;
let pkg, manifest = path.resolve(filepath.replace(MODULE_DIR, '$1'), 'package.json');
try { pkg = JSON.parse(fs.readFileSync(manifest)); } catch (e) {}
return !!(pkg.modules || pkg['jsnext:main']);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment