tuiweather 0.3.2 → 0.3.4
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 +2 -2
- package/bin/tuiweather.js +1 -1
- package/dist/index.js +7302 -4535
- package/package.json +3 -3
- package/dist/highlights-eq9cgrbb.scm +0 -604
- package/dist/highlights-ghv9g403.scm +0 -205
- package/dist/highlights-hk7bwhj4.scm +0 -284
- package/dist/highlights-r812a2qc.scm +0 -150
- package/dist/highlights-x6tmsnaa.scm +0 -115
- package/dist/injections-73j83es3.scm +0 -27
- package/dist/parser.worker-q7b31n6a.js +0 -4566
- package/dist/tree-sitter-3jzf13jk.wasm +0 -0
- package/dist/tree-sitter-javascript-nd0q4pe9.wasm +0 -0
- package/dist/tree-sitter-markdown-411r6y9b.wasm +0 -0
- package/dist/tree-sitter-markdown_inline-j5349f42.wasm +0 -0
- package/dist/tree-sitter-typescript-zxjzwt75.wasm +0 -0
- package/dist/tree-sitter-zig-e78zbjpm.wasm +0 -0
package/README.md
CHANGED
|
@@ -16,13 +16,13 @@ Keyboard-driven terminal weather app: Dark Sky-style rain nowcasting, hourly and
|
|
|
16
16
|
|
|
17
17
|
## Install
|
|
18
18
|
|
|
19
|
-
Install globally with npm:
|
|
19
|
+
Requires Node.js >= 26.4.0 to run. Install globally with npm:
|
|
20
20
|
|
|
21
21
|
```sh
|
|
22
22
|
npm install --global tuiweather
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
-
or with Bun:
|
|
25
|
+
or with the Bun package manager:
|
|
26
26
|
|
|
27
27
|
```sh
|
|
28
28
|
bun install --global tuiweather
|
package/bin/tuiweather.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#!/usr/bin/env
|
|
1
|
+
#!/usr/bin/env -S node --experimental-ffi --disable-warning=ExperimentalWarning
|
|
2
2
|
import "../dist/index.js";
|