teebot 1.0.2 → 1.0.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/bin/teebot.js +4 -6
- package/package.json +1 -1
package/bin/teebot.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import { execFile } from 'node:child_process'
|
|
4
4
|
|
|
5
|
-
export const VERSION = '1.0.
|
|
5
|
+
export const VERSION = '1.0.4'
|
|
6
6
|
|
|
7
7
|
const VALID_COLORS = ['black', 'white', 'navy', 'grey', 'red', 'asphalt', 'forest', 'gold', 'mauve', 'royal']
|
|
8
8
|
const VALID_FONTS = ['mono', 'sans', 'serif', 'slab', 'hand']
|
|
@@ -144,8 +144,7 @@ function openBrowser(url) {
|
|
|
144
144
|
|
|
145
145
|
function printHelp() {
|
|
146
146
|
console.log(`
|
|
147
|
-
teebot.dev - text on tees
|
|
148
|
-
|
|
147
|
+
teebot.dev - text on tees
|
|
149
148
|
Usage:
|
|
150
149
|
npx teebot "YOUR TEXT HERE" [options]
|
|
151
150
|
|
|
@@ -167,8 +166,7 @@ function printHelp() {
|
|
|
167
166
|
|
|
168
167
|
function printUsage() {
|
|
169
168
|
console.log(`
|
|
170
|
-
teebot.dev - text on tees
|
|
171
|
-
|
|
169
|
+
teebot.dev - text on tees
|
|
172
170
|
Usage: npx teebot "YOUR TEXT HERE" [options]
|
|
173
171
|
Run npx teebot --help for more info.
|
|
174
172
|
`)
|
|
@@ -204,7 +202,7 @@ function main() {
|
|
|
204
202
|
const shirt = renderShirt(args.text)
|
|
205
203
|
|
|
206
204
|
console.log('')
|
|
207
|
-
console.log(' teebot.dev - text on tees
|
|
205
|
+
console.log(' teebot.dev - text on tees')
|
|
208
206
|
console.log('')
|
|
209
207
|
console.log(shirt)
|
|
210
208
|
console.log('')
|