| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- import resolve from 'rollup-plugin-node-resolve';
- import commonjs from 'rollup-plugin-commonjs';
- import sourceMaps from 'rollup-plugin-sourcemaps';
- import { terser } from 'rollup-plugin-terser';
- const pkg = require('./package.json');
- const libraryName = pkg.name;
- const buildCjsPackage = ({ env }) => {
- return {
- input: `compiled/index.js`,
- output: [
- {
- file: `dist/index.${env}.js`,
- name: libraryName,
- format: 'cjs',
- sourcemap: true,
- exports: 'named',
- globals: {
- react: 'React',
- 'prop-types': 'PropTypes',
- },
- },
- ],
- external: ['react', 'react-dom', '@grafana/data'],
- plugins: [
- commonjs({
- include: /node_modules/,
- // When 'rollup-plugin-commonjs' fails to properly convert the CommonJS modules to ES6 one has to manually name the exports
- // https://github.com/rollup/rollup-plugin-commonjs#custom-named-exports
- namedExports: {
- '../../node_modules/lodash/lodash.js': [
- 'flatten',
- 'find',
- 'upperFirst',
- 'debounce',
- 'isNil',
- 'isNumber',
- 'flattenDeep',
- 'map',
- 'chunk',
- 'sortBy',
- 'uniqueId',
- 'zip',
- 'omit',
- ],
- '../../node_modules/react-color/lib/components/common': ['Saturation', 'Hue', 'Alpha'],
- '../../node_modules/immutable/dist/immutable.js': [
- 'Set',
- 'Map',
- 'List',
- 'OrderedSet',
- 'is',
- 'Stack',
- 'Record',
- ],
- '../../node_modules/esrever/esrever.js': ['reverse'],
- },
- }),
- resolve(),
- sourceMaps(),
- env === 'production' && terser(),
- ],
- };
- };
- export default [buildCjsPackage({ env: 'development' }), buildCjsPackage({ env: 'production' })];
|