Skip to content

Commit

Permalink
chore(ci): don't print gzipped sizes as those fluctuate
Browse files Browse the repository at this point in the history
  • Loading branch information
rchl committed Apr 7, 2023
1 parent f24cfb2 commit 8ae975e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 21 deletions.
20 changes: 0 additions & 20 deletions .size-limit.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,39 +4,19 @@ module.exports = [
path: 'size-check/base/.nuxt/dist/client/',
gzip: false,
},
{
name: 'fixture: base (gzipped)',
path: 'size-check/base/.nuxt/dist/client/',
gzip: true,
},
{
name: 'fixture: lazy',
path: 'size-check/lazy/.nuxt/dist/client/',
gzip: false,
},
{
name: 'fixture: lazy (gzipped)',
path: 'size-check/lazy/.nuxt/dist/client/',
gzip: true,
},
{
name: 'fixture: tracing',
path: 'size-check/tracing/.nuxt/dist/client/',
gzip: false,
},
{
name: 'fixture: tracing (gzipped)',
path: 'size-check/tracing/.nuxt/dist/client/',
gzip: true,
},
{
name: 'fixture: lazy+tracing',
path: 'size-check/lazy+tracing/.nuxt/dist/client/',
gzip: false,
},
{
name: 'fixture: lazy+tracing (gzipped)',
path: 'size-check/lazy+tracing/.nuxt/dist/client/',
gzip: true,
},
];
2 changes: 1 addition & 1 deletion size-check/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": true,
"scripts": {
"build": "run-p build:*",
"build:base": "nuxt build --analyze -c ./base/nuxt.config.cjs",
"build:base": "nuxt build -c ./base/nuxt.config.cjs",
"build:tracing": "nuxt build -c ./tracing/nuxt.config.cjs",
"build:lazy": "nuxt build -c ./lazy/nuxt.config.cjs",
"build:lazy+tracing": "nuxt build -c ./lazy+tracing/nuxt.config.cjs"
Expand Down

0 comments on commit 8ae975e

Please sign in to comment.