bi-cycle
Version:
Bi-cycle assists in making infinite carousels and sliders by handling the index logic for you.
21 lines (20 loc) • 449 B
JavaScript
module.exports = {
entry: './src/bi-cycle.js',
output: {
path: __dirname + '/dist',
filename: 'bi-cycle.js',
library: 'bi-cycle',
libraryTarget: 'commonjs2'
},
module: {
loaders: [
{
test: /\.js$/,
loader: 'babel-loader',
query: {
presets: ['es2015', 'stage-0']
}
}
]
}
};