-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtsup.config.ts
82 lines (75 loc) · 1.54 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
73
74
75
76
77
78
79
80
81
82
import fs from "node:fs";
import path from "node:path";
import { defineConfig } from "tsup";
// import pkgJson from "./package.json";
let pkgJson: { name: string; version: string } = (() => {
let fileContents = fs.readFileSync(
path.join(process.cwd(), "package.json"),
"utf8"
);
return JSON.parse(fileContents);
})();
let { name: packageName, version: packageVersion } = pkgJson;
export default defineConfig((options) => {
let entry = ["src/index.ts"];
let external = ["react", "react-dom"];
let target = "es2020" as const;
let banner = createBanner({
author: "Chance Strickland",
creationYear: 2022,
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}
*/
`;
}