This repository has been archived by the owner on May 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrollup.config.js
121 lines (106 loc) · 2.65 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
import jscc from 'rollup-plugin-jscc';
import typescript from 'rollup-plugin-typescript2';
import json from 'rollup-plugin-json';
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
// TODO: Update `rollup-plugin-terser`
// See issue https://github.com/TrySound/rollup-plugin-terser/issues/5 that breaks mutli-output
import { terser } from 'rollup-plugin-terser';
import babel from 'rollup-plugin-babel';
import sourceMaps from 'rollup-plugin-sourcemaps';
import { kebabCase } from 'lodash';
// The module name
const moduleName = 'diaspora';
const fileName = kebabCase(moduleName);
const env = process.env.ENVIRONMENT || 'development'; // Production or development
const pkg = require('./package.json');
console.log(`Building ${moduleName} for ${env}.`);
// Plugins used for build
const getPlugins = browser => [
// Preprocess files
jscc( {
values: {
_BROWSER: browser,
_ENVIRONMENT: env,
},
extensions: ['.js', '.ts'],
} ),
// Compile TypeScript files
typescript( {
useTsconfigDeclarationDir: true,
clean: true,
check: true,
} ),
json(),
// Allow node_modules resolution, so you can use 'external' to control
// which external modules to include in the bundle
// https://github.com/rollup/rollup-plugin-node-resolve#usage
resolve( {
browser,
} ),
// Allow bundling cjs modules (unlike webpack, rollup doesn't understand cjs)
commonjs( {
namedExports: {
'node_modules/lodash/lodash.js': Object.keys( require( 'lodash' ) ),
},
} ),
env === 'production' ? terser() : undefined,
// Resolve source maps to the original source
// Downgrade ES
babel(),
sourceMaps(),
].filter(v => v);
// Destination dir
const outDir = 'dist';
// Should we generate source maps?
const sourcemap = true;
const externals = Object.keys(pkg.dependencies).concat(['path']);
const input = './src/index.ts';
export default [
// Browser
{
input,
output: {
file: `${outDir}/browser/${fileName}.iife.js`,
format: 'iife',
// Use `name` as window to hack a bit & avoid exports.
name: moduleName,
sourcemap,
},
plugins: getPlugins(true),
},
{
input,
output: {
file: `${outDir}/browser/${fileName}.esm.js`,
format: 'esm',
name: moduleName,
sourcemap
},
plugins: getPlugins(true),
external: externals,
},
// Node
{
input,
output: {
file: `${outDir}/node/${fileName}.esm.js`,
format: 'esm',
name: moduleName,
sourcemap
},
plugins: getPlugins(false),
external: externals,
},
{
input,
output: {
file: `${outDir}/node/${fileName}.cjs.js`,
format: 'cjs',
name: moduleName,
sourcemap
},
plugins: getPlugins(false),
external: externals,
},
]