pickem 1.0.5 → 1.0.6
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 +10 -0
- package/README.md +11 -1
- package/package.json +9 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,16 @@ All notable changes to pickem 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
|
+
## [1.0.6] — 2026-06-14
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- **Now open source.** Development moved to the public repository
|
|
13
|
+
[calebogden/pickem-oss](https://github.com/calebogden/pickem-oss); the
|
|
14
|
+
published package links it as the source and is built with npm provenance.
|
|
15
|
+
Added README, CONTRIBUTING, and live Repository/Issues/Homepage links. No
|
|
16
|
+
runtime code changes.
|
|
17
|
+
|
|
8
18
|
## [1.0.5] — 2026-06-14
|
|
9
19
|
|
|
10
20
|
### Fixed
|
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
- **Usage-aware ordering** — frequently chosen items sort to the top automatically
|
|
11
11
|
- **Single- and multi-select** — with optional free-text entry for ad-hoc values
|
|
12
12
|
- **Wizard flows** — chain prompts with branching and conditional steps
|
|
13
|
-
- **Light and fully typed** —
|
|
13
|
+
- **Light and fully typed** — zero dependencies, ESM, ships with types
|
|
14
14
|
|
|
15
15
|
## Install
|
|
16
16
|
|
|
@@ -175,6 +175,16 @@ await pickem.checkbox(items, {
|
|
|
175
175
|
- Node.js >= 18
|
|
176
176
|
- ESM only
|
|
177
177
|
|
|
178
|
+
## Contributing
|
|
179
|
+
|
|
180
|
+
Issues and pull requests are welcome at
|
|
181
|
+
[github.com/calebogden/pickem-oss](https://github.com/calebogden/pickem-oss).
|
|
182
|
+
See [CONTRIBUTING.md](CONTRIBUTING.md) for setup, tests, and conventions.
|
|
183
|
+
|
|
178
184
|
## License
|
|
179
185
|
|
|
180
186
|
MIT
|
|
187
|
+
|
|
188
|
+
## Acknowledgments
|
|
189
|
+
|
|
190
|
+
pickem's prompt interactions were inspired by [Inquirer.js](https://github.com/SBoudrias/Inquirer.js).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pickem",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Usage-sorted searchable autocomplete for CLI tools",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -21,6 +21,14 @@
|
|
|
21
21
|
"picker",
|
|
22
22
|
"wizard"
|
|
23
23
|
],
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "git+https://github.com/calebogden/pickem-oss.git"
|
|
27
|
+
},
|
|
28
|
+
"bugs": {
|
|
29
|
+
"url": "https://github.com/calebogden/pickem-oss/issues"
|
|
30
|
+
},
|
|
31
|
+
"homepage": "https://github.com/calebogden/pickem-oss#readme",
|
|
24
32
|
"author": "Caleb Ogden <co@ogden.co>",
|
|
25
33
|
"license": "MIT",
|
|
26
34
|
"engines": {
|