mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 00:09:51 +03:00
19 lines
259 B
Bash
19 lines
259 B
Bash
#!/bin/sh
|
|
|
|
# run from root
|
|
# make sure ncu is installed globally (https://github.com/raineorshine/npm-check-updates)
|
|
|
|
cd interface
|
|
ncu -u
|
|
yarn set version stable
|
|
yarn
|
|
yarn format
|
|
yarn lint
|
|
|
|
cd ../mock-api
|
|
ncu -u
|
|
yarn set version stable
|
|
yarn
|
|
yarn format
|
|
|
|
cd .. |