@nathievzm/lumi 1.2.0 → 1.2.1

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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.2.1](https://github.com/nathievzm/lumi/compare/v1.2.0...v1.2.1) (2026-05-29)
2
+
3
+ ### Bug Fixes
4
+
5
+ - **index:** await for update notifier
6
+ ([6eab884](https://github.com/nathievzm/lumi/commit/6eab884c213f457ac4f389fa8a44c5223dec5b22))
7
+
1
8
  # [1.2.0](https://github.com/nathievzm/lumi/compare/v1.1.6...v1.2.0) (2026-05-29)
2
9
 
3
10
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nathievzm/lumi",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "a concurrent cli tool to resize and convert images using bun and sharp",
5
5
  "keywords": [
6
6
  "bun",
package/src/index.ts CHANGED
@@ -17,7 +17,7 @@ import { notifyUpdate } from '@/update'
17
17
  import pkg from '../package.json' with { type: 'json' }
18
18
 
19
19
  try {
20
- void notifyUpdate(pkg)
20
+ await notifyUpdate(pkg)
21
21
 
22
22
  console.clear()
23
23