@nathievzm/lumi 1.1.0 → 1.1.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.1.1](https://github.com/nathievzm/lumi/compare/v1.1.0...v1.1.1) (2026-05-12)
2
+
3
+ ### Bug Fixes
4
+
5
+ - intro banner and use lightning emoji in outro message
6
+ ([a3d4f33](https://github.com/nathievzm/lumi/commit/a3d4f3362d847fd8415027c9a73f6fc486dcd770))
7
+
1
8
  # [1.1.0](https://github.com/nathievzm/lumi/compare/v1.0.1...v1.1.0) (2026-05-12)
2
9
 
3
10
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nathievzm/lumi",
3
- "version": "1.1.0",
3
+ "version": "1.1.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,13 +17,13 @@ import pkg from '../package.json'
17
17
 
18
18
  console.clear()
19
19
 
20
- const banner = `
21
- ${color.magenta('╭──────────────────────────────╮')}
22
- ${color.magenta('')} ${color.magenta('')}
23
- ${color.magenta('')} 🩷 ${color.magenta('lumi')} 🩷 ${color.magenta('')}
24
- ${color.magenta('')} ${color.magenta('')}
25
- ${color.magenta('╰──────────────────────────────╯')}
26
- `
20
+ const banner = color.magenta(`
21
+ ╭──────────────────────────────╮
22
+ │ │
23
+ │ 🩷 lumi 🩷
24
+ │ │
25
+ ╰──────────────────────────────╯
26
+ `)
27
27
 
28
28
  console.log(banner)
29
29
 
@@ -85,7 +85,7 @@ if (result.some(pr => pr.status === 'rejected')) {
85
85
  )
86
86
  outroMessage = 'please check your input files and try again 🛠️'
87
87
  } else {
88
- spin.stop(`yay! ${color.green(images.length)} images processed in ${color.green(duration)} seconds! 💡`)
88
+ spin.stop(`yay! ${color.green(images.length)} images processed in ${color.green(duration)} seconds! \u26A1\uFE0F`)
89
89
  outroMessage = 'bye 👋'
90
90
  }
91
91