Skip to content
Permalink
ffd96b38fb
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
0 contributors

Users who have contributed to this file

44 lines (41 sloc) 1.06 KB
import commonjs from 'rollup-plugin-commonjs';
import json from 'rollup-plugin-json';
import resolve from 'rollup-plugin-node-resolve';
const bannerLines = [
'This file contains the Bottleneck library (MIT), compiled to ES2017, and without Clustering support.',
'https://github.com/SGrondin/bottleneck',
].map(x => ` * ${x}`).join('\n');
const banner = `/**\n${bannerLines}\n */`;
const missing = `export default () => console.log('You must import the full version of Bottleneck in order to use this feature.');`;
const exclude = [
'RedisDatastore.js',
'RedisConnection.js',
'IORedisConnection.js',
'Scripts.js'
];
export default {
input: 'lib/index.js',
output: {
name: 'Bottleneck',
file: 'light.js',
sourcemap: false,
globals: {},
format: 'umd',
banner
},
external: [],
plugins: [
json(),
{
load: id => {
const chunks = id.split('/');
const file = chunks[chunks.length - 1];
if (exclude.indexOf(file) >= 0) {
return missing
}
}
},
resolve(),
commonjs()
]
};