Files
nostr-profile-manager/justfile
2024-02-19 14:22:12 -03:00

16 lines
507 B
Makefile

dev:
fd '.ts|.html|.css' | entr -r bash -c 'just build && python -m http.server -d dist/ -b 127.0.0.1 8080'
build:
rm -rf dist
esbuild src/index.ts --bundle --minify --sourcemap=external --outfile=dist/index.js
./node_modules/.bin/sass src/style.scss dist/style.css --style compressed
cp src/index.html dist/index.html
cp -r src/img dist/img
deploy: lint build
wrangler pages publish --project-name metadata-contacts-relays dist/
lint:
eslint src/ --ext .js,.jsx,.ts,.tsx