feat: refactor and add readme and standardized commands list to justfile along with base eslint config from other projects

This commit is contained in:
Lucas Oskorep
2026-03-03 00:19:56 -05:00
parent 516fd0f9ca
commit 203b573168
13 changed files with 386 additions and 51 deletions
+10 -4
View File
@@ -7,7 +7,7 @@ packages:
build: packages
rm -rf dist/*
tsc
pnpm run build
glib-compile-schemas schemas
cp metadata.json dist/
cp stylesheet.css dist/
@@ -21,10 +21,16 @@ build-package: build
install: build
mkdir -p ~/.local/share/gnome-shell/extensions/{{NAME}}@{{DOMAIN}}
rm -rf /.local/share/gnome-shell/extensions/{{NAME}}@{{DOMAIN}}/*
rm -rf ~/.local/share/gnome-shell/extensions/{{NAME}}@{{DOMAIN}}/*
cp -r dist/* ~/.local/share/gnome-shell/extensions/{{NAME}}@{{DOMAIN}}/
run:
dbus-run-session -- gnome-shell --nested --wayland
env MUTTER_DEBUG_DUMMY_MODE_SPECS=1280x720 dbus-run-session -- gnome-shell --devkit --wayland
install-and-run: install run
install-and-run: install run
lint:
pnpm run lint
clean:
pnpm run clean