Skip to content

Commit

Permalink
bump pmm package (#509)
Browse files Browse the repository at this point in the history
  • Loading branch information
dario-piotrowicz authored Oct 19, 2023
1 parent 33c5ff8 commit 5b44784
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 14 deletions.
5 changes: 5 additions & 0 deletions .changeset/thick-mails-repeat.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@cloudflare/next-on-pages': patch
---

bump package-manager-manager to 0.1.3
20 changes: 10 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions packages/next-on-pages/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"cookie": "^0.5.0",
"esbuild": "^0.15.3",
"js-yaml": "^4.1.0",
"package-manager-manager": "^0.1.2",
"package-manager-manager": "^0.1.3",
"pcre-to-regexp": "^1.1.0",
"semver": "^7.5.2",
"zod": "^3.22.3",
Expand All @@ -61,12 +61,12 @@
"@types/node": "^20.1.4",
"dedent-tabs": "^0.10.3",
"eslint": "^8.35.0",
"image-to-base64": "^2.2.0",
"mock-fs": "^5.2.0",
"p-limit": "^4.0.0",
"prettier": "^2.8.4",
"typescript": "^5.0.4",
"vitest": "^0.32.2",
"vitest-environment-miniflare": "^2.13.0",
"image-to-base64": "^2.2.0"
"vitest-environment-miniflare": "^2.13.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ async function runVercelBuild(
pm: PackageManager,
additionalArgs: string[] = [],
): Promise<void> {
if (pm.name === 'yarn' && pm.version.startsWith('1.')) {
if (pm.name === 'yarn' && pm.version?.startsWith('1.')) {
const vercelVersion = await getPackageVersionOrNull(pm, 'vercel');

if (!vercelVersion) {
Expand Down

0 comments on commit 5b44784

Please sign in to comment.