bunup 0.1.0 → 0.1.4

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 CHANGED
@@ -1,3 +1,18 @@
1
1
  # Bunup
2
2
 
3
- # bunup
3
+ > A extremely fast, zero-config bundler for TypeScript & JavaScript, powered by Bun.
4
+
5
+ Built with speed in mind, Bunup aims to provide the fastest bundling experience possible. This project is currently a work in progress and will be ready for production use soon.
6
+
7
+ ## Benchmarks
8
+
9
+ Bunup outperforms other popular bundlers by a significant margin:
10
+
11
+ | Bundler | Format | Build Time | Relative Speed |
12
+ | ------------- | -------- | ------------ | ---------------- |
13
+ | bunup | esm, cjs | **3.65ms** | **16.0x faster** |
14
+ | bunup (+ dts) | esm, cjs | **149.51ms** | **5.0x faster** |
15
+ | tsup | esm, cjs | 58.36ms | baseline |
16
+ | tsup (+ dts) | esm, cjs | 745.23ms | baseline |
17
+
18
+ _Lower build time is better. Benchmark run on the same code with identical output formats._