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,47 @@
const path = require('path')
module.exports = {
title: 'react-dropzone',
styleguideDir: path.join(__dirname, 'styleguide'),
showCode: true,
showUsage: true,
showSidebar: false,
serverPort: 8080,
sections: [
{
content: 'README.md'
},
{
name: 'PropTypes',
components: './src/index.js'
},
{
name: 'Examples',
context: {
Dropzone: './src/index'
},
sections: [
{
name: 'Basic example',
content: 'examples/Basic/Readme.md'
},
{
name: 'Styling Dropzone',
content: 'examples/Styling/Readme.md'
},
{
name: 'Accepting specific file types',
content: 'examples/Accept/Readme.md'
},
{
name: 'Opening File Dialog Programmatically',
content: 'examples/File Dialog/Readme.md'
},
{
name: 'Full Screen Dropzone',
content: 'examples/Fullscreen/Readme.md'
}
]
}
]
}