Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ dist/

# dependencies
node_modules/
.pixi/

# logs
npm-debug.log*
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
22
17 changes: 11 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,21 +1,26 @@
.PHONY: install dev build preview check banner post

# ── npm ───────────────────────────────────────────────────────────────────────
# ── env ───────────────────────────────────────────────────────────────────────

env:
pixi install

# ── npm (runs inside pixi env) ────────────────────────────────────────────────

install:
npm install
pixi run install

dev:
npm run dev
pixi run dev

build:
npm run build
pixi run build

preview:
npm run preview
pixi run preview

check:
npm run check
pixi run check

# ── assets ────────────────────────────────────────────────────────────────────

Expand Down
1 change: 1 addition & 0 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"woff", "woff2", "oklch", "rgb", "rgba", "hsl",
"clamp", "minmax", "prefers",
"nebari", "jmespath", "snistrict",
"journalctl", "systemd",
"firewalld", "libvirt", "vagrantfile",
"syscall", "seccomp", "apparmor", "selinux",
"etcd", "kube", "kube-proxy", "coredns",
Expand Down
273 changes: 273 additions & 0 deletions pixi.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions pixi.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[project]
name = "blog"
version = "0.1.0"
channels = ["conda-forge"]
platforms = ["osx-arm64", "osx-64", "linux-64"]

[dependencies]
nodejs = ">=22.12,<23"

[tasks]
install = "npm install"
dev = "npm run dev"
build = "npm run build"
preview = "npm run preview"
check = "npm run check"
spell = "npm run spell"
Loading