forked from react-pdf-viewer/react-pdf-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
49 lines (43 loc) · 1.09 KB
/
rollup.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import path from 'path';
import { terser } from 'rollup-plugin-terser';
import json from '@rollup/plugin-json';
import typescript from '@rollup/plugin-typescript';
const rootPackagePath = process.cwd();
const input = path.join(rootPackagePath, 'src/index.ts');
const pkg = require(path.join(rootPackagePath, 'package.json'));
const outputDir = path.join(rootPackagePath, 'lib');
const pgkName = pkg.name.split('/').pop();
const external = [
...Object.keys(pkg.dependencies || {}),
...Object.keys(pkg.peerDependencies || {}),
];
const plugins = [
json(),
typescript(),
];
export default [
// CJS
{
input,
output: {
exports: 'named',
file: path.join(outputDir, `cjs/${pgkName}.js`),
format: 'cjs',
},
external,
plugins,
},
// Minified CJS
{
input,
output: {
exports: 'named',
file: path.join(outputDir, `cjs/${pgkName}.min.js`),
format: 'cjs',
},
external,
plugins: plugins.concat([
terser(),
]),
}
];