From d73afba75b5756200b7b72224c3762981ea9ea19 Mon Sep 17 00:00:00 2001 From: Maximilian Franzke <787658+mfranzke@users.noreply.github.com> Date: Sat, 8 Nov 2025 20:07:02 +0100 Subject: [PATCH] refactor: switched to pnpm --- .github/workflows/01-lint.yml | 2 +- .github/workflows/01-test.yml | 2 +- .husky/pre-commit | 8 ++++---- hygen/README.md | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/01-lint.yml b/.github/workflows/01-lint.yml index 87a24527..c8e9fa1a 100644 --- a/.github/workflows/01-lint.yml +++ b/.github/workflows/01-lint.yml @@ -16,4 +16,4 @@ jobs: uses: ./.github/actions/pnpm-init - name: 🔬 Validate repo - run: npm run lint + run: pnpm run lint diff --git a/.github/workflows/01-test.yml b/.github/workflows/01-test.yml index 86f21c1e..0e328c96 100644 --- a/.github/workflows/01-test.yml +++ b/.github/workflows/01-test.yml @@ -21,4 +21,4 @@ jobs: uses: ./.github/actions/pnpm-init - name: 👨‍🔬👩‍🔬 Test repo - run: npm run test + run: pnpm run test diff --git a/.husky/pre-commit b/.husky/pre-commit index 7bd3c853..624c7368 100644 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,4 +1,4 @@ -npm run generate:api-docs -npm run lint -npm run build -npm run test \ No newline at end of file +pnpm run generate:api-docs +pnpm run lint +pnpm run build +pnpm run test \ No newline at end of file diff --git a/hygen/README.md b/hygen/README.md index 4b4eec73..dfa743f6 100644 --- a/hygen/README.md +++ b/hygen/README.md @@ -7,5 +7,5 @@ This workspace project contains all templates to generate a boilerplate command. Generate command: ```shell -npm run generate +pnpm run generate ```