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,6 +11,7 @@ docs/_build
1111docs /doctrees
1212
1313build
14+ ! bin /build
1415node_modules
1516npm-debug.log
1617ios
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ set -e
3+
4+ # Build the project
5+ echo " Building project..."
6+ pnpm build
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ set -e
3+
4+ # Format/lint code
5+ echo " Formatting and linting code..."
6+ pnpm fix
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ set -e
3+
4+ # Install or upgrade dependencies
5+ echo " Installing dependencies..."
6+ pnpm install
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ set -e
3+
4+ # Start the project (build and run the wizard)
5+ echo " Starting project..."
6+ pnpm build
7+ pnpm try
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ set -e
3+
4+ # Run tests (includes linting and formatting)
5+ echo " Running tests..."
6+ pnpm test
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ set -e
3+
4+ # Update dependencies after a pull
5+ echo " Updating dependencies..."
6+ ./bin/setup
You can’t perform that action at this time.
0 commit comments