Initial commit
This commit is contained in:
48
node_modules/react-draggable/webpack.config.js
generated
vendored
Normal file
48
node_modules/react-draggable/webpack.config.js
generated
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
var webpack = require('webpack');
|
||||
|
||||
module.exports = {
|
||||
entry: './index.js',
|
||||
output: {
|
||||
filename: './dist/react-draggable.js',
|
||||
sourceMapFilename: './dist/react-draggable.js.map',
|
||||
devtoolModuleFilenameTemplate: '../[resource-path]',
|
||||
library: 'ReactDraggable',
|
||||
libraryTarget: 'umd'
|
||||
},
|
||||
externals: {
|
||||
'react': {
|
||||
'commonjs': 'react',
|
||||
'commonjs2': 'react',
|
||||
'amd': 'react',
|
||||
// React dep should be available as window.React, not window.react
|
||||
'root': 'React'
|
||||
},
|
||||
'react-dom': {
|
||||
'commonjs': 'react-dom',
|
||||
'commonjs2': 'react-dom',
|
||||
'amd': 'react-dom',
|
||||
'root': 'ReactDOM'
|
||||
}
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.(?:js|es).?$/,
|
||||
loader: 'babel-loader?cacheDirectory',
|
||||
exclude: /(node_modules)/
|
||||
}
|
||||
]
|
||||
},
|
||||
resolve: {
|
||||
extensions: ['.js']
|
||||
},
|
||||
plugins: [
|
||||
new webpack.DefinePlugin({
|
||||
'process.env': {
|
||||
DRAGGABLE_DEBUG: process.env.DRAGGABLE_DEBUG
|
||||
}
|
||||
}),
|
||||
// Scope hoisting
|
||||
new webpack.optimize.ModuleConcatenationPlugin(),
|
||||
]
|
||||
};
|
||||
Reference in New Issue
Block a user