From 57262d6f3d1d0ee50b476bdd5c2d45689d1c5cea Mon Sep 17 00:00:00 2001 From: Dominik Wilkowski Date: Sat, 6 May 2023 22:09:28 +1000 Subject: [PATCH] Added TS types to npm package --- nodejs/README.md | 1 + nodejs/package.json | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/nodejs/README.md b/nodejs/README.md index f7e9737..f21e388 100644 --- a/nodejs/README.md +++ b/nodejs/README.md @@ -161,6 +161,7 @@ Please look at the coding style and work with it, not against it ;) ## Release History +* 3.2.0 - Added TS type to the published npm package * 3.1.1 - Fixed #58 gradient color bug, added `gray` to gradient colors * 3.1.0 - Added support for -V flag fallback * 3.0.0 - Added rust library port, aligned APIs, added hex background colors, fixed minor alignment bugs, updated license from GPLv2 to GPLv3 diff --git a/nodejs/package.json b/nodejs/package.json index 6b89f40..b436f7a 100644 --- a/nodejs/package.json +++ b/nodejs/package.json @@ -1,7 +1,7 @@ { "name": "cfonts", "description": "Sexy ANSI fonts for the console", - "version": "3.1.1", + "version": "3.2.0", "homepage": "https://github.com/dominikwilkowski/cfonts", "author": { "name": "Dominik Wilkowski", @@ -32,7 +32,7 @@ "test:lint": "eslint src/", "test:format": "prettier --list-different \"**/*.{js,json}\"", "format": "prettier --write \"**/*.{js,json}\"", - "build": "yarn build:lib && yarn build:bin && yarn build:fonts && yarn test:types", + "build": "yarn build:lib && yarn build:bin && yarn build:fonts", "build:bin": "npx mkdirp bin && mv lib/bin.js bin/index.js", "build:lib": "npx mkdirp lib && babel src --out-dir lib", "build:fonts": "npx mkdirp fonts && npx cpy-cli \"../fonts/*\" \"./fonts/\"",