Skip to content

Commit bbac94e

Browse files
committed
chore(recipe): Use pnpm
1 parent 95e1ae1 commit bbac94e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

recipe/bin/dev/update

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#!/bin/sh
22
git pull \
3-
&& yarn install \
4-
&& yarn upgrade \
5-
&& yarn encore dev \
3+
&& pnpm install \
4+
&& pnpm upgrade \
5+
&& pnpm encore dev \
66
&& composer update dontdrinkandroot/* --prefer-source \
77
&& bin/dev/composer-update-patch-only
88

9-
if [ -n "$(git status --porcelain composer.lock)" ] || [ -n "$(git status --porcelain yarn.lock)" ]; then
10-
git add composer.lock yarn.lock
9+
if [ -n "$(git status --porcelain composer.lock)" ] || [ -n "$(git status --porcelain pnpm-lock.yarn)" ]; then
10+
git add composer.lock pnpm-lock.yarn
1111
git commit -m "refactor: Updating dependencies"
1212
fi

0 commit comments

Comments
 (0)