We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e767a4f commit b0c8425Copy full SHA for b0c8425
scripts/exp/release.ts
@@ -161,9 +161,10 @@ async function publishExpPackages({ dryRun }: { dryRun: boolean }) {
161
const packagesToPublish = await mapWorkspaceToPackages([
162
`${projectRoot}/packages-exp/*`
163
]);
164
- packagePaths.push(`${projectRoot}/packages/firestore`);
165
- packagePaths.push(`${projectRoot}/packages/storage`);
166
- packagePaths.push(`${projectRoot}/packages/database`);
+
+ packagesToPublish.push(`${projectRoot}/packages/firestore`);
+ packagesToPublish.push(`${projectRoot}/packages/storage`);
167
+ packagesToPublish.push(`${projectRoot}/packages/database`);
168
169
/**
170
* Release packages to NPM
0 commit comments