Skip to content

Commit 12c8323

Browse files
committed
chore: migrate from npm to pnpm
1 parent c15b693 commit 12c8323

5 files changed

Lines changed: 6123 additions & 9683 deletions

File tree

Makefile

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,21 @@ help:
22
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
33

44
install: ## Install Dependencies
5-
@npm i
5+
@pnpm install
66

7-
watch: ## Build for Dev environment and Watch files
8-
@npm run watch
7+
dev: ## Build and watch for changes
8+
@pnpm run dev
99

1010
lint: ## Lint all files
11-
@npm run lint
11+
@pnpm run lint
1212

1313
test: ## Run unit tests (JEST)
14-
@npm run test
14+
@pnpm run test
1515

1616
prod: ## Build for Production environment
17-
@npm run prod
17+
@pnpm run prod
1818

1919
publish: ## Publish to NPM
2020
@make prod
21-
@npm run copy-typescript-definitions
2221
@make test
23-
@npm publish
22+
@pnpm publish

0 commit comments

Comments
 (0)