6 lines
115 B
Bash
Executable file
6 lines
115 B
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
# remove npm install/build artifacts
|
|
rm -rf node_modules
|
|
npm run clean --workspaces
|