Initial commit

This commit is contained in:
pasketti
2026-04-05 16:14:49 -04:00
commit ebee3a5534
14059 changed files with 2588797 additions and 0 deletions

48
node_modules/react-draggable/webpack.config.js generated vendored Normal file
View 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(),
]
};