chore(js): use bun instead of yarn

This commit is contained in:
Paul Chavard 2024-03-13 11:06:24 +01:00
parent 3f54d46f19
commit 94ecd2166e
17 changed files with 68 additions and 9033 deletions

View file

@ -11,7 +11,7 @@ Usually, a deployment goes like this (in pseudo-code):
# For each server:
# Stop the server
# Get the new code (e.g. `git clone git@github.com:betagouv/demarches-simplifiees.fr.git`)
# Install new dependencies (e.g. `bundle install && yarn install`)
# Install new dependencies (e.g. `bundle install && bun install`)
# Restart the app server
# Run data migrations (e.g. `rake after_party:run`)
```