This repository was archived by the owner on May 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathbundle.ts
148 lines (133 loc) · 4.56 KB
/
bundle.ts
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
// Copyright (C) 2018 Zilliqa
//
// This file is part of zilliqa-js
//
// 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 * 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 ts from 'typescript';
import project from './project';
import { c, createLogger } from './logger';
const logBundle = createLogger('bundle');
function getKeys(p) {
const packageJsonFile = `${process.cwd()}/packages/${p}/package.json`;
const data = fs.readFileSync(packageJsonFile, 'utf-8');
const { dependencies } = JSON.parse(data);
return dependencies ? Object.keys(dependencies) : [];
}
async function bundle() {
try {
const outputs = process.argv.slice(2)[0].split(',');
const packages = project.packages.filter(
({ name }) => name !== 'zilliqa-js-proto',
);
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({
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
external: getKeys(pkg.name),
// 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: {
...getKeys(pkg.name).reduce((g, packages) => {
if (packages === pkg.name) {
g[pkg.scopedName] = pkg.globalName;
} else {
g[packages] = packages;
}
return g;
}, {}),
},
format: 'umd',
sourcemap: true,
});
}
}
} catch (err) {
logBundle('Failed to bundle:');
logBundle(err);
process.exit(1);
}
}
bundle();