forked from Zilliqa/zilliqa-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbundle.ts
More file actions
190 lines (172 loc) · 5.64 KB
/
bundle.ts
File metadata and controls
190 lines (172 loc) · 5.64 KB
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
// This file is part of Zilliqa-Javascript-Library.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
import * as fs from 'fs';
import * as path from 'path';
import { promisify } from 'util';
import * as rollup from 'rollup';
import alias from 'rollup-plugin-alias';
import commonjs from 'rollup-plugin-commonjs';
import json from 'rollup-plugin-json';
import globals from 'rollup-plugin-node-globals';
import resolve from 'rollup-plugin-node-resolve';
import typescript2 from 'rollup-plugin-typescript2';
import webpack from 'webpack';
import ts from 'typescript';
import project from './project';
import { createLogger, c } from './logger';
const logPreProcess = createLogger('preprocess');
const logBundle = createLogger('bundle');
/**
* preProcess
*
* This function exists for the purpose of preprocessing problematic
* third-party modules like elliptic.js with webpack, which cause problems
* with rollup due to things like circular dependencies.
*/
function preProcess() {
const modules = project.preprocess.map((mod) => {
return new Promise((resolve, reject) => {
const compiler = webpack({
entry: {
[mod.name]: path.join(mod.path, mod.entry),
},
output: {
filename: '[name].js',
library: mod.name,
libraryTarget: 'commonjs2',
path: mod.outDir,
},
mode: 'production',
optimization: {
minimize: false,
},
});
compiler.run((err, stats) => {
if (err) {
reject(err);
} else {
logPreProcess(
`Successfully preprocessed ${Object.keys(
stats.compilation.assets,
).join(' ,')}`,
);
resolve(stats);
}
});
});
});
return Promise.all(modules);
}
async function bundle() {
try {
const outputs = process.argv.slice(2)[0].split(',');
const packages = project.packages.filter(
({ name }) => name !== 'zilliqa-js-proto',
);
await preProcess();
const count = packages.length;
let cur = 0;
for (const pkg of packages) {
const logPrefix = c.grey(`[${++cur}/${count}] ${pkg.scopedName}`);
logBundle(`${logPrefix} creating bundle`);
const externals = project.packages
.filter((p) => p.name !== pkg.name)
.map((p) => p.scopedName);
logBundle(`externals: ${externals}`);
const bundle = await rollup.rollup({
input: path.join(pkg.src, 'index.ts'),
plugins: [
alias({
elliptic: path.resolve(
__dirname,
'../',
'includes/elliptic/elliptic.js',
),
proto: path.resolve(__dirname, '../', 'includes/proto/index.js'),
}),
resolve({
browser: true,
jsnext: true,
preferBuiltins: true,
}),
commonjs({
namedExports: {
[path.resolve(__dirname, '../', 'includes/proto/index.js')]: [
'ZilliqaMessage',
],
},
}),
globals(),
json(),
typescript2({
tsconfig: path.join(pkg.path, 'tsconfig.json'),
typescript: ts, // ensure we're using the same typescript (3.x) for rollup as for regular builds etc
tsconfigOverride: {
module: 'esnext',
stripInternal: true,
emitDeclarationOnly: false,
composite: false,
declaration: false,
declarationMap: false,
sourceMap: true,
},
}),
],
// mark all packages that are not *this* package as external so they don't get included in the bundle
// include tslib in the bundles since only __decorate is really used by multiple packages (we can figure out a way to deduplicate that later on if need be)
external: project.packages
.filter((p) => p.name !== pkg.name)
.map((p) => p.scopedName)
.concat(['cross-fetch']),
});
// 'amd' | 'cjs' | 'system' | 'es' | 'esm' | 'iife' | 'umd'
if (outputs.indexOf('esm') === -1) {
logBundle(`${logPrefix} skipping esm`);
} else {
logBundle(`${logPrefix} writing esm - ${pkg.esm}`);
await bundle.write({
file: pkg.esm,
name: pkg.globalName,
format: 'esm',
sourcemap: true,
});
}
if (outputs.indexOf('umd') === -1) {
logBundle(`${logPrefix} skipping umd`);
} else {
logBundle(`${logPrefix} writing umd - ${pkg.umd}`);
await bundle.write({
file: pkg.umd,
exports: 'named',
name: pkg.globalName,
globals: {
...project.packages.reduce((g, pkg) => {
g[pkg.scopedName] = pkg.globalName;
return g;
}, {}),
tslib: 'tslib',
},
format: 'umd',
sourcemap: true,
});
}
}
} catch (err) {
logBundle('Failed to bundle:');
logBundle(err);
process.exit(1);
}
}
bundle();