-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.mjs
84 lines (76 loc) · 1.92 KB
/
rollup.config.mjs
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
// @ts-check
import { readFile } from 'node:fs/promises';
import terser from '@rollup/plugin-terser';
import typescript2 from 'rollup-plugin-typescript2';
const packageJSON = JSON.parse(await readFile('./package.json', 'utf-8'));
const today = Date().split(' ').splice(1, 3).join(' ');
/**
* Comment with library information to be appended in the generated bundles.
*/
const banner = `/*!
* v${packageJSON.version}
* ${packageJSON.name} (${today})
*
* Website: https://hawapi.theproject.id/
* API Docs: https://hawapi.theproject.id/docs/
* Github (SDK): https://github.com/HawAPI/js-sdk
* TypeDoc: https://hawapi.github.io/js-sdk/v1/
*
* (c) ${packageJSON.author.name} (@${packageJSON.author.username}) - ${packageJSON.author.url}
* Released under the ${packageJSON.license} License.
*/
`;
/**
* Creates an output options object for Rollup.js.
* @param {import('rollup').OutputOptions} options
* @returns {import('rollup').OutputOptions}
*/
function createOutputOptions(options) {
return {
banner,
name: 'HawAPI',
exports: 'named',
sourcemap: true,
...options,
};
}
/**
* @type {import('rollup').RollupOptions}
*/
const options = {
input: './src/index.ts',
output: [
createOutputOptions({
file: './dist/index.min.js',
format: 'commonjs',
plugins: [terser()],
}),
createOutputOptions({
file: './dist/index.min.cjs',
format: 'commonjs',
plugins: [terser()],
}),
createOutputOptions({
file: './dist/index.min.mjs',
format: 'esm',
plugins: [terser()],
}),
createOutputOptions({
file: './dist/index.esm.min.js',
format: 'esm',
plugins: [terser()],
}),
createOutputOptions({
file: './dist/index.umd.min.js',
format: 'umd',
plugins: [terser()],
}),
],
plugins: [
typescript2({
clean: true,
useTsconfigDeclarationDir: true,
}),
],
};
export default options;