From 8ae975ec117d7391e5157c053ad25f9bfe4225b5 Mon Sep 17 00:00:00 2001 From: Rafal Chlodnicki Date: Fri, 7 Apr 2023 17:03:19 +0200 Subject: [PATCH] chore(ci): don't print gzipped sizes as those fluctuate --- .size-limit.cjs | 20 -------------------- size-check/package.json | 2 +- 2 files changed, 1 insertion(+), 21 deletions(-) diff --git a/.size-limit.cjs b/.size-limit.cjs index 9085f200..160633d4 100644 --- a/.size-limit.cjs +++ b/.size-limit.cjs @@ -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, - }, ]; diff --git a/size-check/package.json b/size-check/package.json index b727dd12..9a107865 100644 --- a/size-check/package.json +++ b/size-check/package.json @@ -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"