nexus site path corrected
[portal.git] / ecomp-portal-FE / client / bower_components / angular-cache / rollup.config.js
1 var babel = require('rollup-plugin-babel')
2 var pkg = require('./package.json')
3
4 module.exports = {
5   moduleName: 'angularCacheModuleName',
6   moduleId: 'angular-cache',
7   banner: '/**\n' +
8   ' * angular-cache\n' +
9   ' * @version ' + pkg.version + ' - Homepage <https://github.com/jmdobry/angular-cache>\n' +
10   ' * @copyright (c) 2013-2016 angular-cache project authors\n' +
11   ' * @license MIT <https://github.com/jmdobry/angular-cache/blob/master/LICENSE>\n' +
12   ' * @overview angular-cache is a very useful replacement for Angular\'s $cacheFactory.\n' +
13   ' */',
14   plugins: [
15     babel({
16       babelrc: false,
17       presets: [
18         'es2015-rollup'
19       ]
20     })
21   ]
22 }