Skip to content

Instantly share code, notes, and snippets.

View rafcontreras's full-sized avatar

Rafael Contreras rafcontreras

View GitHub Profile
@rafcontreras
rafcontreras / webpack-for-node-modules.js
Created July 21, 2020 02:08 — forked from mxstbr/webpack-for-node-modules.js
How to use webpack to compile node modules
/* eslint-disable no-var */
var path = require('path');
var autoprefixer = require('autoprefixer');
const MATCH_ALL_NON_RELATIVE_IMPORTS = /^\w.*$/i;
module.exports = [{
output: {
filename: '[name].js',
library: 'atrium-react-plugin-beta',