File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11#! /bin/sh
22. " $( dirname " $0 " ) /_/husky.sh"
33
4+ bd hooks run pre-commit
45npx lint-staged
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+ . " $( dirname " $0 " ) /_/husky.sh"
3+
4+ bd hooks run pre-push
Original file line number Diff line number Diff line change 388388bd ready # Show issues ready to work (no blockers)
389389bd list --status=open # All open issues
390390bd show < id> # Full issue details with dependencies
391- bd create --title=" ..." --type=task --priority=2
391+ bd create --title=" ..." --type=task --priority=2 --id= " ... " # Creating with id
392392bd update < id> --status=in_progress
393393bd close < id> --reason=" Completed"
394394bd close < id1> < id2> # Close multiple issues at once
@@ -433,6 +433,7 @@ git push # Push to remote
433433- Check ` bd ready ` at session start to find available work
434434- Update status as you work (in_progress → closed)
435435- Create new issues with ` bd create ` when you discover tasks
436+ - Always ask for --id= param if it's unclear
436437- Use descriptive titles and set appropriate priority/type
437438- Always ` bd sync ` before ending session
438439
Original file line number Diff line number Diff line change 1+ import type { LoaderFunction } from '@remix-run/node'
2+ import { redirect } from '@remix-run/node'
3+
4+ export const loader : LoaderFunction = ( ) => {
5+ return redirect ( '/rumah-berbagi.jpeg' , 301 )
6+ }
You can’t perform that action at this time.
0 commit comments