Skip to content

Commit 42e9632

Browse files
committed
fix sourcemap
1 parent 9a70012 commit 42e9632

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "luminara",
3-
"version": "1.2.2",
3+
"version": "1.2.3",
44
"description": "Zero-dependency, high-efficiency HTTP client built on native fetch with a microsecond-scale core. Features a deterministic plugin pipeline, advanced retry/backoff, hedging, rate limiting, deduplication, and a real-time stats engine — all built-in, with no external plugins required. Lightweight, universal, and designed for browsers and Node.js 18+.",
55
"author": {
66
"name": "Jonathan Miller",

tsup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default defineConfig({
55
format: ['esm', 'cjs'],
66
outDir: 'dist',
77
clean: true,
8-
sourcemap: true,
8+
sourcemap: false, // Disabled since source maps are excluded from npm package
99
dts: false, // We'll handle types differently since we're using pure JS
1010
minify: true, // Enable minification for smaller bundle size
1111
splitting: false,

0 commit comments

Comments
 (0)