Skip to content

Latest commit

 

History

History
77 lines (56 loc) · 2.33 KB

dx.md

File metadata and controls

77 lines (56 loc) · 2.33 KB

DX

Environment Setup

Requirements

  • Node.js ^20.9.0
  • PNPM package manager
  • Any Chromium-based browser (Chrome, Edge, Brave, etc.)
    • Firefox is NOT supported for running the dev environment

Development Workflow

Getting Started

  1. Clone the repository

  2. Install dependencies:

    pnpm install
  3. Start the development server:

    pnpm dev
    • At the current size of the project, dev server might take up to 30 seconds to finish transpiling the necessary code for the extension to work.
    • HMR not working? Refer to HMR Support.
  4. Enable "Developer mode" in your browser

  5. Load the extension from the dist folder

Build Process

# Build for Chrome
pnpm build

# Build for Firefox
pnpm build:firefox

# Build for both browsers and create .zip distribution packages
pnpm zip:both

Developer Tools

Linting and Formatting

  • Prettier TailwindCSS class sorting
  • In addition to common TypeScript/React ESLint rules, this project includes some specific rules:

Development Commands

  • pnpm esl: Run ESLint
  • pnpm eslq: Run ESLint but only show errors
  • pnpm eslf: Run ESLint with auto-fix
  • pnpm fmt: Format all code with Prettier
  • pnpm clean: Delete node_modules and dist directories
  • Unit tests with Vitest
    • pnpm test: Run tests
    • pnpm test:ui: Run tests with UI
  • End-to-end tests with Playwright
    • Currently only boilerplate code, working unreliable due to Cloudflare protection

Editor Experience

VSCode Integration .vscode/settings.json

  • File exclusions to keep the explorer clean
  • You might want to adjust typescript.tsserver.maxTsServerMemory to match your system's specs
  • TailwindCSS (v4) IntelliSense support for jQuery's methods
  • i18n-ally (lokalise.i18n-ally) pre-configured