10 lines
131 B
Bash
10 lines
131 B
Bash
#!/bin/bash
|
|
|
|
# Enable echoing of commands
|
|
set -x
|
|
|
|
# Install npm dependencies
|
|
npm install
|
|
|
|
# Run the development script
|
|
npm run dev
|