Skip to content

Commit 7c1eaad

Browse files
Merge ch-debug-staging into release
2 parents 6c29dc2 + 2c525ec commit 7c1eaad

File tree

4 files changed

+13
-1
lines changed

4 files changed

+13
-1
lines changed

.changeset/shaggy-donkeys-know.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'firebase': patch
3+
---
4+
5+
Fixed the types path for `compat/app`.

.github/workflows/release-staging.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ on:
1616
options:
1717
- master
1818
- v8
19+
- ch-debug-staging
1920
verbose:
2021
description: 'Enable verbose logging'
2122
type: boolean

packages/firebase/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@
228228
"default": "./compat/analytics/dist/esm/index.esm.js"
229229
},
230230
"./compat/app": {
231-
"types": "./compat/app/dist/compat/app/index.d.ts",
231+
"types": "./compat/index.d.ts",
232232
"node": {
233233
"require": "./compat/app/dist/index.cjs.js",
234234
"import": "./compat/app/dist/index.mjs"

scripts/release/utils/publish.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,12 @@ async function publishPackageInCI(
151151
stderrText += data.toString();
152152
});
153153
await spawnPromise;
154+
if (process.env.VERBOSE_NPM_LOGGING === 'true') {
155+
console.log(`stdout for ${pkg} publish:`);
156+
console.log(stdoutText);
157+
console.log(`stderr for ${pkg} publish:`);
158+
console.error(stderrText);
159+
}
154160
return spawnPromise;
155161
} catch (err) {
156162
console.log(`Error publishing ${pkg}`);

0 commit comments

Comments
 (0)