@mynameistito/hcc-bin-day 0.1.1 → 0.1.2
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/README.md +1 -7
- package/dist/index.mjs +7 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -31,12 +31,6 @@ npx @mynameistito/hcc-bin-day search "12 Grey Street"
|
|
|
31
31
|
npx @mynameistito/hcc-bin-day lookup "12 Grey Street"
|
|
32
32
|
npx @mynameistito/hcc-bin-day schedule "12 Grey Street"
|
|
33
33
|
npx @mynameistito/hcc-bin-day --json lookup "12 Grey Street"
|
|
34
|
-
|
|
35
|
-
bun run src/index.ts
|
|
36
|
-
bun run src/index.ts search "12 Grey Street"
|
|
37
|
-
bun run src/index.ts lookup "12 Grey Street"
|
|
38
|
-
bun run src/index.ts schedule "12 Grey Street"
|
|
39
|
-
bun run src/index.ts --json lookup "12 Grey Street"
|
|
40
34
|
```
|
|
41
35
|
|
|
42
36
|
## Output modes
|
|
@@ -78,4 +72,4 @@ It is provided independently as a convenience for accessing publicly available c
|
|
|
78
72
|
|
|
79
73
|
## License
|
|
80
74
|
|
|
81
|
-
MIT(LICENSE)
|
|
75
|
+
[MIT](LICENSE)
|
package/dist/index.mjs
CHANGED
|
@@ -208,15 +208,15 @@ const printHelp = () => {
|
|
|
208
208
|
console.log(`Hamilton bin-day client
|
|
209
209
|
|
|
210
210
|
Usage:
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
211
|
+
npx @mynameistito/hcc-bin-day search <address>
|
|
212
|
+
npx @mynameistito/hcc-bin-day schedule <address>
|
|
213
|
+
npx @mynameistito/hcc-bin-day lookup <address>
|
|
214
|
+
npx @mynameistito/hcc-bin-day schedule <address> --text
|
|
215
215
|
|
|
216
216
|
Examples:
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
217
|
+
npx @mynameistito/hcc-bin-day schedule "14b mountbatten pl"
|
|
218
|
+
npx @mynameistito/hcc-bin-day schedule "14b mountbatten pl" --text
|
|
219
|
+
npx @mynameistito/hcc-bin-day lookup "12 grey st"
|
|
220
220
|
|
|
221
221
|
Output is JSON by default. Use --text (or --pretty) for human-readable output.
|
|
222
222
|
Address input is flexible: unit suffixes (14b -> 14B) and street types (pl, st, rd, etc.).
|