mirror of
https://github.com/OpenMaxIO/openmaxio-object-browser
synced 2026-07-01 07:41:18 -07:00
* Set Yarn checksumBehavior to reset * Update .gitignore according to Yarn docs See https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored * Update yarn.lock --------- Co-authored-by: Harshavardhana <harsha@minio.io>
10 lines
125 B
Bash
Executable File
10 lines
125 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -f "$NVM_DIR/nvm.sh" ]
|
|
then
|
|
\. "$NVM_DIR/nvm.sh";
|
|
nvm use;
|
|
fi
|
|
yarn install
|
|
yarn prettier --check .
|