ec1d5bd41a
* maint: support 0.31 SDK resolve param changed from uri/uris, to urls. * feat: stop daemon sdk call * fix: ffffffffff webpack bug https://github.com/nulogy/design-system/pull/132
27 lines
631 B
JavaScript
27 lines
631 B
JavaScript
/* eslint-disable import/no-commonjs */
|
|
const path = require('path');
|
|
const FlowWebpackPlugin = require('flow-webpack-plugin')
|
|
|
|
module.exports = {
|
|
mode: 'none',
|
|
entry: './src/index.js',
|
|
output: {
|
|
filename: 'bundle.js',
|
|
path: path.resolve(__dirname, 'dist'),
|
|
libraryTarget: 'umd',
|
|
globalObject: `(typeof self !== 'undefined' ? self : this)`
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.js$/,
|
|
exclude: /node_modules/,
|
|
loader: 'babel-loader',
|
|
},
|
|
],
|
|
},
|
|
resolve: {
|
|
modules: [path.resolve(__dirname, 'src'), 'node_modules'],
|
|
},
|
|
plugins: [new FlowWebpackPlugin()],
|
|
};
|