We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 905ddec commit c56325eCopy full SHA for c56325e
dangerfile.ts
@@ -49,7 +49,7 @@ export default async () => {
49
schedule(async () => {
50
const lines = (await promisify(exec)('cd packages/browser; yarn size:check')).stdout.split('\n');
51
const es5size = lines.find(v => v.startsWith('ES5'));
52
- const e65size = lines.find(v => v.startsWith('ES6'));
+ const es6size = lines.find(v => v.startsWith('ES6'));
53
message(`@sentry/browser bundle gzip'ed minified size: *(${es5size}) (${es6size})*`);
54
});
55
};
0 commit comments