mirror of
https://github.com/aljazceru/nostr-profile-manager.git
synced 2025-12-17 05:34:20 +01:00
16 lines
507 B
Makefile
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
|