2022-12-22 12:03:49 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -eoux pipefail
|
|
|
|
|
2023-01-19 15:38:27 +00:00
|
|
|
# see https://stackoverflow.com/questions/4774054/reliable-way-for-a-bash-script-to-get-the-full-path-to-itself
|
|
|
|
THIS_SCRIPT="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
|
|
|
|
yarn --cwd $THIS_SCRIPT/../../javascript prettier -c .
|
2022-12-22 12:03:49 +00:00
|
|
|
|