-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsup.config.ts
72 lines (66 loc) · 1.28 KB
/
tsup.config.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
import { defineConfig } from "tsup";
import pkgJson from "./package.json";
let { name: packageName, version: packageVersion } = pkgJson;
export default defineConfig(() => {
const entry = ["src/index.ts"];
const external = ["react", "react-dom"];
const target = "es2020";
const banner = createBanner({
author: "Sayan Biswas",
creationYear: 2024,
license: "MIT",
packageName,
version: packageVersion,
});
return [
// cjs.dev.js
{
entry,
format: "cjs",
sourcemap: true,
external,
banner: { js: banner },
target,
},
// esm + d.ts
{
entry,
format: "esm",
sourcemap: true,
external,
banner: { js: banner },
target,
dts: { banner },
},
];
});
function createBanner({
packageName,
version,
author,
license,
creationYear,
}: {
packageName: string;
version: string;
author: string;
license: string;
creationYear: string | number;
}) {
let currentYear = new Date().getFullYear();
let year =
currentYear === Number(creationYear)
? currentYear
: `${creationYear}-${currentYear}`;
return `/**
* ${packageName} v${version}
*
* Copyright (c) ${year}, ${author}
*
* This source code is licensed under the ${license} license found in the
* LICENSE file in the root directory of this source tree.
*
* @license ${license}
*/
`;
}