diff --git a/README.md b/README.md index 3904b71..594029f 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,25 @@

- SudoFill icon + SudoFill icon

-[![CI](https://github.com/bdtran2002/SudoFill/actions/workflows/ci.yml/badge.svg)](https://github.com/bdtran2002/SudoFill/actions/workflows/ci.yml) -[![Actionlint](https://github.com/bdtran2002/SudoFill/actions/workflows/actionlint.yml/badge.svg)](https://github.com/bdtran2002/SudoFill/actions/workflows/actionlint.yml) -[![Release-please](https://github.com/bdtran2002/SudoFill/actions/workflows/release-please.yml/badge.svg)](https://github.com/bdtran2002/SudoFill/actions/workflows/release-please.yml) -[![Release](https://github.com/bdtran2002/SudoFill/actions/workflows/release.yml/badge.svg)](https://github.com/bdtran2002/SudoFill/actions/workflows/release.yml) -[![Latest release](https://img.shields.io/github/v/release/bdtran2002/SudoFill)](https://github.com/bdtran2002/SudoFill/releases/latest) -[![License](https://img.shields.io/badge/license-GPLv3-blue.svg)](LICENSE) +

⚡ SudoFill

-# ⚡ SudoFill +

Browser extension for fast disposable sign-up flows.

-SudoFill is a browser extension for fast disposable sign-up flows. +

+ TypeScript + HTML + CSS +

+ +

+ CI + Actionlint + Release-please + Release + Latest release + License +

It creates a temporary Mail.tm inbox, autofills common registration fields on supported HTTPS pages, keeps verification emails inside the extension UI, and lets you open detected verification links without bouncing between tabs. @@ -121,6 +129,14 @@ Chrome: bun run dev:chrome ``` +### Quick local dev test + +```bash +bun run dev:test +``` + +Runs a fast local sanity check without Docker: typecheck, unit tests, and a Firefox build. + ### Build production bundles Firefox: diff --git a/package.json b/package.json index b7581f0..b358c0e 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,7 @@ "dev": "wxt -b firefox", "dev:firefox": "wxt -b firefox", "dev:chrome": "wxt", + "dev:test": "bun run typecheck && bun run test && bun run build", "build": "wxt build -b firefox", "build:firefox": "wxt build -b firefox", "build:chrome": "wxt build",