Skip to content

Commit 2fe2499

Browse files
authored
Fix failing publish step (#14060)
One of the (private) packages was missing a version which caused `pnpm publish` to fail. This PR adds the missing version.
1 parent 50a6a37 commit 2fe2499

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

packages/test-utils/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "tailwindcss-test-utils",
3+
"version": "0.0.0",
34
"private": true,
45
"main": "index.js"
56
}

scripts/version-packages.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ exec('pnpm --silent --filter=!./playgrounds/* -r exec pwd', async (err, stdout)
6363
// Track all the workspaces
6464
for (let path of paths) {
6565
let pkg = await fs.readFile(path, 'utf8').then(JSON.parse)
66+
if (pkg.private) continue
6667
workspaces.set(pkg.name, { version: pkg.version ?? '', path })
6768
}
6869

0 commit comments

Comments
 (0)