10 lines
116 B
Bash
10 lines
116 B
Bash
#!/bin/bash
|
|
|
|
cd tools/webui
|
|
rm -rf node_modules
|
|
npm install
|
|
npm run format
|
|
npm run lint
|
|
npm run check
|
|
npm run build
|