Skip to content

Commit

Permalink
feat: Add pnpm makefile with commands for package management
Browse files Browse the repository at this point in the history
  • Loading branch information
valter-silva-au committed Mar 7, 2024
1 parent 66f9271 commit 02bd05a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions lib/make/pnpm.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
.PHONY: pnpm/install
## Install a package with pnpm
pnpm/install:
sudo npm install -g pnpm

.PHONY: pnpm/update
## Update packages to the latest version with pnpm
pnpm/update:
pnpm update

.PHONY: pnpm/outdated
## List outdated packages with pnpm
pnpm/outdated:
pnpm outdated

.PHONY: pnpm/audit
## Run security audit with pnpm
pnpm/audit:
pnpm audit

.PHONY: pnpm/clean-cache
## Clean pnpm cache
pnpm/clean-cache:
pnpm store prune

0 comments on commit 02bd05a

Please sign in to comment.