Bug fixing added moving torrents after download, getting ready for alpha release

This commit is contained in:
2018-01-19 17:54:50 -05:00
parent 06e9317c9a
commit a310d64ce4
1290 changed files with 70172 additions and 46954 deletions

View File

@@ -0,0 +1,30 @@
const path = require('path')
module.exports = {
entry: './src/index.js',
devtool: 'source-map',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'index.js',
libraryTarget: 'umd',
library: 'Dropzone'
},
module: {
loaders: [
{
include: [path.resolve(__dirname, 'src'), path.resolve(__dirname, 'examples')],
test: /\.js$/,
loader: 'babel-loader'
}
]
},
resolve: {
// Can require('file') instead of require('file.js') etc.
extensions: ['.js', '.json']
},
externals: {
react: 'react',
'prop-types': 'prop-types'
},
plugins: []
}