* 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 .
|