Skip to content

Commit

Permalink
fix: use yarn instead of pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
hecht-a committed Sep 5, 2022
1 parent 89d8ccb commit 3565bc3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ PACKAGE_VERSION=$(shell cat package.json | grep -i version | sed -e "s/ //g" | c

.PHONY: install
install:
pnpm install
yarn install

.PHONY: build
build:
pnpm run build
yarn run build

.PHONY: lint
lint:
pnpm run lint
yarn run lint

.PHONY: npmjs
npmjs:
Expand All @@ -30,4 +30,4 @@ github-tag:

.PHONY: types
types:
pnpm run types
yarn run types

0 comments on commit 3565bc3

Please sign in to comment.