bunup 0.11.16 → 0.11.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,46 @@
1
+ <!-- markdownlint-disable first-line-h1 -->
2
+
3
+ <!-- markdownlint-start-capture -->
4
+ <!-- markdownlint-disable-file no-inline-html -->
5
+ <div align="center">
6
+
7
+ <!-- markdownlint-disable-next-line no-alt-text -->
8
+
9
+
10
+ ![Logo](https://raw.githubusercontent.com/bunup/bunup/refs/heads/main/docs/public/logo.svg)
11
+
12
+ ![Bunup](https://raw.githubusercontent.com/bunup/bunup/refs/heads/main/assets/bunup-title.svg)
13
+
14
+ [![NPM Version](https://img.shields.io/npm/v/bunup?logo=npm&logoColor=212121&label=version&labelColor=ffc44e&color=212121)](https://npmjs.com/package/bunup) [![Built with Bun](https://img.shields.io/badge/Built_with-Bun-fbf0df?logo=bun&labelColor=212121)](https://bun.sh) [![sponsor](https://img.shields.io/badge/sponsor-EA4AAA?logo=githubsponsors&labelColor=FAFAFA)](https://github.com/sponsors/arshad-yaseen)
15
+
16
+ Bunup is the **blazing-fast build tool** for TypeScript libraries, designed for flawless developer experience and speed, **powered by Bun**.
17
+
18
+ </div>
19
+ <!-- markdownlint-restore -->
20
+
21
+ ## Features
22
+
23
+ - ⚡ **Instant Builds**: Instant builds and rebuilds by default.
24
+ - 📝 **Top-Notch TypeScript Declarations**: Clean, minimal, accurate `.d.ts` files generated automatically.
25
+ - 📦 **ESM by Default**: Modern ESM output by default.
26
+ - 🪓 **[Declaration Splitting](https://bunup.dev/docs/guide/typescript-declarations#declaration-splitting)**: Splits shared types for smaller, cleaner `.d.ts` files.
27
+ - 🔥 **[Declaration Minification](https://bunup.dev/docs/guide/typescript-declarations#minification)**: Aggressively minifies and shortens type names while preserving public API.
28
+ - 🔋 **Batteries Included**: Auto-generates package exports, detects unused dependencies, and more.
29
+ - 🏗️ **[Workspace](https://bunup.dev/docs/guide/workspaces) Ready**: Builds multiple packages from one config and command.
30
+
31
+ ## 📚 Documentation
32
+
33
+ To get started, visit the [documentation](https://bunup.dev).
34
+
35
+ ## ❤️ Contributing
36
+
37
+ For guidelines on contributing, please read the [contributing guide](CONTRIBUTING.md).
38
+
39
+ We welcome contributions from the community to enhance Bunup's capabilities and make it even more powerful.
40
+
41
+ ![Sponsors](https://cdn.jsdelivr.net/gh/arshad-yaseen/static/sponsors.svg)
42
+
43
+ <div align="center">
44
+
45
+ ![______ 🐈‍⬛ _____________](assets/cat-footer.svg)
46
+ </div>
package/dist/cli/index.js CHANGED
@@ -24,7 +24,7 @@ import {
24
24
  import { loadConfig } from "coffi";
25
25
  import pc3 from "picocolors";
26
26
  // packages/bunup/package.json
27
- var version = "0.11.16";
27
+ var version = "0.11.18";
28
28
 
29
29
  // packages/bunup/src/watch.ts
30
30
  import path from "path";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bunup",
3
3
  "description": "⚡ A blazing-fast build tool for your libraries built with Bun.",
4
- "version": "0.11.16",
4
+ "version": "0.11.20",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist"
@@ -51,7 +51,7 @@
51
51
  "picocolors": "^1.1.1",
52
52
  "tinyexec": "^1.0.1",
53
53
  "tree-kill": "^1.2.2",
54
- "@bunup/dts": "workspace:*"
54
+ "@bunup/dts": "0.11.18"
55
55
  },
56
56
  "peerDependencies": {
57
57
  "typescript": ">=4.5.0",