From ce44975ad4664eb33a28a5abcb058d3bd74942fa Mon Sep 17 00:00:00 2001 From: David Mattia Date: Tue, 5 Dec 2023 16:09:44 +0000 Subject: [PATCH] remove pnpify calls --- .github/workflows/ci.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a344f7a9..7fe8f9da 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: steps: - uses: actions/checkout@v2 - uses: ./.github/commands/dependencies/install_yarn_deps - - run: yarn pnpify depcheck + - run: yarn depcheck run-pre-commits: runs-on: ubuntu-latest diff --git a/package.json b/package.json index 216550a0..09a21be9 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "scripts": { "prepare": "yarn build", "####### Linting #######": "", - "lint": "yarn pnpify eslint src --ext .ts", + "lint": "yarn eslint src --ext .ts", "####### Start #########": "", "start:example": "yarn build:example && http-server example/build/ --port 8080 -o", "start:demo": "yarn build:demo && http-server demo/build/ --port 8081 -o",