Skip to content

Commit eae9557

Browse files
authored
perf: remove sourcemaps from published package (#2)
Reduces package size from 407 KB to 155 KB (-62%)
1 parent 6eec3a8 commit eae9557

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [Unreleased]
1111

12+
## [0.1.2] - 2025-10-21
13+
14+
### Changed
15+
- Remove sourcemaps from published package (reduces size from 407 KB to 155 KB, -62%)
16+
1217
## [0.1.0] - Unreleased
1318

1419
Initial release of JobGuard.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jobguard",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "PostgreSQL durability for Redis-backed job queues with minimal integration",
55
"keywords": [
66
"job-queue",

tsup.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default defineConfig({
66
dts: true,
77
clean: true,
88
splitting: false,
9-
sourcemap: true,
9+
sourcemap: false,
1010
minify: false,
1111
treeshake: true,
1212
target: 'node22',

0 commit comments

Comments
 (0)