diff options
| author | seth <[email protected]> | 2023-05-20 02:40:44 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-05-20 02:43:18 -0400 |
| commit | dd24afc3d85a1bc07352689635971ebae1a421af (patch) | |
| tree | e859c38f21178235a8537580d9b0efe16c50b598 | |
| parent | c0265601b8c5df23aab853124302f014c16da628 (diff) | |
justfile: update to support pnpm
| -rw-r--r-- | justfile | 18 | ||||
| -rw-r--r-- | tailwind.config.ts | 1 |
2 files changed, 12 insertions, 7 deletions
@@ -1,18 +1,24 @@ alias b := build +alias d := dev alias f := fmt +alias p := preview +alias u := update alias uf := update-flake build: - yarn run build + pnpm run build + +dev: + pnpm run dev -[macos] -[windows] fmt: prettier --editorconfig -w . -[linux] -fmt: - prettier --editorconfig -w . && alejandra . +preview: build + pnpm run preview + +update: + pnpm update update-flake: nix flake update diff --git a/tailwind.config.ts b/tailwind.config.ts index cee6d5b..e12b318 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -1,4 +1,3 @@ -/** @type {module} */ /** @type {import('tailwindcss').Config} */ import type { Config } from "tailwindcss"; |
