ink-sdl 0.3.0 → 0.3.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/dist/cli.js +2 -2
- package/package.json +3 -2
package/dist/cli.js
CHANGED
|
@@ -375,7 +375,7 @@ if (args.help) {
|
|
|
375
375
|
console.log(`
|
|
376
376
|
ink-sdl - Render Ink apps in SDL windows
|
|
377
377
|
|
|
378
|
-
Usage:
|
|
378
|
+
Usage: pnpm dlx ink-sdl [options]
|
|
379
379
|
|
|
380
380
|
Options:
|
|
381
381
|
--title <string> Window title
|
|
@@ -393,7 +393,7 @@ Options:
|
|
|
393
393
|
--min-height <number> Minimum window height in pixels
|
|
394
394
|
-h, --help Show this help message
|
|
395
395
|
|
|
396
|
-
For library usage, see: https://github.com/
|
|
396
|
+
For library usage, see: https://github.com/tuxracer/ink-sdl
|
|
397
397
|
`);
|
|
398
398
|
process.exit(0);
|
|
399
399
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ink-sdl",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Render Ink terminal apps in native SDL windows",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -27,7 +27,8 @@
|
|
|
27
27
|
"lint:fix": "eslint src/ --fix",
|
|
28
28
|
"format": "prettier --write src/",
|
|
29
29
|
"test": "vitest",
|
|
30
|
-
"check": "prettier --write src/ && eslint src/ --fix && tsc --noEmit"
|
|
30
|
+
"check": "prettier --write src/ && eslint src/ --fix && tsc --noEmit",
|
|
31
|
+
"prepublishOnly": "pnpm run build"
|
|
31
32
|
},
|
|
32
33
|
"keywords": [
|
|
33
34
|
"terminal",
|