From d5a1abb01391d8dcbf4958da8ef597fdcbee6966 Mon Sep 17 00:00:00 2001 From: James Ross Date: Mon, 25 Mar 2024 22:04:20 +0000 Subject: [PATCH] docs: remove warning about packageManager and pnpm default --- README.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/README.md b/README.md index 6a8c3ec..20a53d4 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,6 @@ jobs: - name: Deploy uses: cloudflare/wrangler-action@v3 with: - packageManager: pnpm # you can omit this if you use npm apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} ``` @@ -53,10 +52,6 @@ jobs: ## Configuration -### packageManager - -⚠️ you must specify package manager. If not specified GH action assumes you are using npm and other managers might be failing. For example pnpm will fail with: `Cannot read properties of null (reading 'matches')` - If you need to install a specific version of Wrangler to use for deployment, you can also pass the input `wranglerVersion` to install a specific version of Wrangler from NPM. This should be a [SemVer](https://semver.org/)-style version number, such as `2.20.0`: ```yaml