mirror of
https://github.com/egoist/tsup.git
synced 2025-12-08 20:35:58 +00:00
80 lines
2.4 KiB
HTML
80 lines
2.4 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"
|
|
/>
|
|
<title>tsup</title>
|
|
<meta name="description" content="bundle typescript library with ease" />
|
|
<meta property="og:title" content="tsup" />
|
|
<meta
|
|
property="og:description"
|
|
content="bundle typescript library with ease"
|
|
/>
|
|
<meta name="twitter:card" content="summary" />
|
|
<!-- Stylesheet -->
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/npm/@egoist/docup@2/dist/docup.min.css"
|
|
/>
|
|
<style>
|
|
.logo-dark {
|
|
display: none;
|
|
}
|
|
@media (prefers-color-scheme: dark) {
|
|
.logo {
|
|
display: none;
|
|
}
|
|
.logo-dark {
|
|
display: block;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<script type="module">
|
|
import * as docup from 'https://cdn.jsdelivr.net/npm/@egoist/docup@2/dist/docup.min.js'
|
|
docup.init({
|
|
// ..options
|
|
navLinks: [
|
|
{ text: `Type Doc`, link: `https://jsdocs.io/package/tsup` },
|
|
{
|
|
text: `GitHub`,
|
|
link: `https://github.com/egoist/tsup`,
|
|
},
|
|
{
|
|
text: `❤️️ Sponsor`,
|
|
link: `https://github.com/sponsors/egoist`,
|
|
},
|
|
],
|
|
beforeSidebar: `<div style="padding: 20px;">
|
|
<div style="margin-bottom:10px">
|
|
<strong style="font-size: 0.8rem;color:#ccc;">SPONSOR</strong>
|
|
</div>
|
|
<a href="https://chromatic.com" rel="nofollow noopener" target="_blank"
|
|
><img
|
|
title="Ship UIs faster with automated workflows for Storybook"
|
|
alt="chromatic logo"
|
|
class="logo"
|
|
src="https://fastly.jsdelivr.net/gh/egoist-bot/images@main/uPic/Group 2 (1).png"
|
|
/><img
|
|
title="Ship UIs faster with automated workflows for Storybook"
|
|
alt="chromatic logo"
|
|
class="logo logo-dark"
|
|
src="https://fastly.jsdelivr.net/gh/egoist-bot/images@main/uPic/Group 2 (2).png"
|
|
/></a>
|
|
</div>`,
|
|
})
|
|
</script>
|
|
<script
|
|
async
|
|
defer
|
|
data-website-id="24610d03-48c4-4ad3-8557-4d424349d2ba"
|
|
src="https://umami.egoist.dev/mami.js"
|
|
></script>
|
|
</body>
|
|
</html>
|