From eda5ffa6d01ceba2daaefdac3b1566c07296f321 Mon Sep 17 00:00:00 2001 From: Chapman Pendery <35637443+cpendery@users.noreply.github.com> Date: Sun, 10 Mar 2024 23:34:30 -0700 Subject: [PATCH] build: bump 0.0.1-rc.5 (#25) * build: bump 0.0.1-rc.5 Signed-off-by: Chapman Pendery * docs: update requirements Signed-off-by: Chapman Pendery * fix: title in package.json Signed-off-by: Chapman Pendery --------- Signed-off-by: Chapman Pendery --- README.md | 11 ++++------- package-lock.json | 4 ++-- package.json | 4 ++-- 3 files changed, 8 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 2caed28..5b7c08b 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,10 @@ TUI Test is a framework for testing terminal applications. It provides a rich API for writing tests that interact with a terminal application across macOS, Linux, and Windows with a wide range of shells. It is built to be **fast**, **reliable**, and **easy to use**. +## Requirements + +- Node.js 20.X, 18.X, 16.X (16.6.0 >=) + ## Installation Install TUI Test as using `npm`: @@ -26,17 +30,10 @@ pnpm add -D @microsoft/tui-test Running tests is as simple as running TUI Test from the command line after installation: -```sh -tui-test -``` - -Or run it using `npx`: - ```sh npx @microsoft/tui-test ``` - ## Capabilities ### Resilient • No flaky tests diff --git a/package-lock.json b/package-lock.json index d63bbe7..61b8ab1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@microsoft/tui-test", - "version": "0.0.1-rc.4", + "version": "0.0.1-rc.5", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@microsoft/tui-test", - "version": "0.0.1-rc.4", + "version": "0.0.1-rc.5", "license": "MIT", "dependencies": { "@homebridge/node-pty-prebuilt-multiarch": "^0.11.12", diff --git a/package.json b/package.json index ea6a4a6..8fdfc8b 100644 --- a/package.json +++ b/package.json @@ -7,8 +7,8 @@ "lint:fix": "eslint src/ --ext .ts,.tsx --fix && prettier src/ --write", "test:e2e": "npm run build && node index.js e2e.test.ts" }, - "version": "0.0.1-rc.4", - "description": "Fast and precise end-to-end terminal testing framework", + "version": "0.0.1-rc.5", + "description": "An end-to-end terminal testing framework for CLI and TUI experiences", "type": "module", "engines": { "node": ">=16.6.0 <21.0.0"