Skip to content

Commit b0c8425

Browse files
committed
fix publish path
1 parent e767a4f commit b0c8425

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

scripts/exp/release.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -161,9 +161,10 @@ async function publishExpPackages({ dryRun }: { dryRun: boolean }) {
161161
const packagesToPublish = await mapWorkspaceToPackages([
162162
`${projectRoot}/packages-exp/*`
163163
]);
164-
packagePaths.push(`${projectRoot}/packages/firestore`);
165-
packagePaths.push(`${projectRoot}/packages/storage`);
166-
packagePaths.push(`${projectRoot}/packages/database`);
164+
165+
packagesToPublish.push(`${projectRoot}/packages/firestore`);
166+
packagesToPublish.push(`${projectRoot}/packages/storage`);
167+
packagesToPublish.push(`${projectRoot}/packages/database`);
167168

168169
/**
169170
* Release packages to NPM

0 commit comments

Comments
 (0)