We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c948321 commit c5b96a3Copy full SHA for c5b96a3
src/build/index.js
@@ -95,8 +95,9 @@ const tasks = new Listr([
95
const maxsize = bytes(ctx.bundlesizeMax)
96
const diff = gzip - maxsize
97
98
- task.output = 'Use https://www.bundle-buddy.com/ to load "./dist/stats.json".'
99
- task.output = `Check previous sizes in https://bundlephobia.com/result?p=${pkg.name}@${pkg.version}`
+ task.output = 'Use https://esbuild.github.io/analyze/ to load "./dist/stats.json".'
+ // bundlephobia doesn't support exports maps properly
100
+ // task.output = `Check previous sizes in https://bundlephobia.com/result?p=${pkg.name}@${pkg.version}`
101
102
if (diff > 0) {
103
throw new Error(`${bytes(gzip)} (▲${bytes(diff)} / ${bytes(maxsize)})`)
0 commit comments