@levu/snap 0.3.11 → 0.3.12

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/package.json +3 -2
package/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.3.12] - 2026-03-04
9
+
10
+ ### Fixed
11
+ - Added missing runtime dependency `picocolors` to prevent `ERR_MODULE_NOT_FOUND` when consuming password/multiline adapters from published packages.
12
+ - Improved password prompt stability with a raw-mode terminal path to reduce cursor/glyph jitter in interactive input.
13
+ - Added password adapter regression tests and updated component reference keyboard behavior notes.
14
+
8
15
  ## [0.3.11] - 2026-02-28
9
16
 
10
17
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@levu/snap",
3
- "version": "0.3.11",
3
+ "version": "0.3.12",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "snap": "./dist/cli-entry.js"
@@ -12,7 +12,8 @@
12
12
  "dev": "tsx src/cli-entry.ts"
13
13
  },
14
14
  "dependencies": {
15
- "@clack/prompts": "^1.0.0"
15
+ "@clack/prompts": "^1.0.0",
16
+ "picocolors": "^1.1.1"
16
17
  },
17
18
  "devDependencies": {
18
19
  "@types/node": "^22.10.2",