123456789101112131415161718192021222324 |
- const pkg = require('./package.json');
- const banner = `/*!
- * @license
- * ` + pkg.name + `
- * http://chartjs.org/
- * Version: ` + pkg.version + `
- *
- * Copyright ` + (new Date().getFullYear()) + ` Chart.js Contributors
- * Released under the MIT license
- * https://github.com/chartjs/` + pkg.name + `/blob/master/LICENSE.md
- */`;
- export default {
- input: 'src/plugin.js',
- banner: banner,
- format: 'umd',
- external: [
- 'chart.js'
- ],
- globals: {
- 'chart.js': 'Chart'
- }
- };
|