Socket
Socket
Sign inDemoInstall

@fluentui/bundle-size

Package Overview
Dependencies
189
Maintainers
12
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.0 to 1.1.1

17

CHANGELOG.json

@@ -5,3 +5,18 @@ {

{
"date": "Tue, 20 Jul 2021 22:20:56 GMT",
"date": "Mon, 27 Sep 2021 07:33:33 GMT",
"tag": "@fluentui/bundle-size_v1.1.1",
"version": "1.1.1",
"comments": {
"patch": [
{
"author": "Humberto.Morimoto@microsoft.com",
"package": "@fluentui/bundle-size",
"comment": "bundle-size: Fixing issue where the baseline and PR values were flipped.",
"commit": "16bc6ece02c11f68d9e7d4bf1e5547b6a2123135"
}
]
}
},
{
"date": "Tue, 20 Jul 2021 22:23:17 GMT",
"tag": "@fluentui/bundle-size_v1.1.0",

@@ -8,0 +23,0 @@ "version": "1.1.0",

# Change Log - @fluentui/bundle-size
This log was last generated on Tue, 20 Jul 2021 22:20:56 GMT and should not be manually modified.
This log was last generated on Mon, 27 Sep 2021 07:33:33 GMT and should not be manually modified.
<!-- Start content -->
## [1.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/bundle-size_v1.1.1)
Mon, 27 Sep 2021 07:33:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/bundle-size_v1.1.0..@fluentui/bundle-size_v1.1.1)
### Patches
- bundle-size: Fixing issue where the baseline and PR values were flipped. ([PR #19843](https://github.com/microsoft/fluentui/pull/19843) by Humberto.Morimoto@microsoft.com)
## [1.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/bundle-size_v1.1.0)
Tue, 20 Jul 2021 22:20:56 GMT
Tue, 20 Jul 2021 22:23:17 GMT

@@ -11,0 +20,0 @@ ### Minor changes

2

package.json
{
"name": "@fluentui/bundle-size",
"version": "1.1.0",
"version": "1.1.1",
"bin": {

@@ -5,0 +5,0 @@ "bundle-size": "./bin/bundle-size.js"

@@ -53,4 +53,4 @@ const chalk = require('chalk');

const minifiedBefore = diff.empty ? 'N/A' : formatBytes(minifiedSize + diff.minified.delta);
const gzippedBefore = diff.empty ? 'N/A' : formatBytes(gzippedSize + diff.gzip.delta);
const minifiedBefore = diff.empty ? 'N/A' : formatBytes(minifiedSize - diff.minified.delta);
const gzippedBefore = diff.empty ? 'N/A' : formatBytes(gzippedSize - diff.gzip.delta);

@@ -57,0 +57,0 @@ const minifiedAfter = formatBytes(minifiedSize);

@@ -32,4 +32,4 @@ const stripAnsi = require('strip-ansi');

├────────────────────┼────────┼───────────────────────┤
│ baz-package │ 2 kB │ 100%↑ 1 kB │
│ An entry with diff │ 200 B │ 100%↑ 100 B │
│ baz-package │ 0 B │ 100%↑ 1 kB │
│ An entry with diff │ 0 B │ 100%↑ 100 B │
├────────────────────┼────────┼───────────────────────┤

@@ -36,0 +36,0 @@ │ foo-package │ N/A │ 100%↑ 1 kB │

@@ -87,5 +87,5 @@ const chalk = require('chalk');

: [
`\`${formatBytes(entry.minifiedSize + entry.diff.minified.delta)}\``,
`\`${formatBytes(entry.minifiedSize - entry.diff.minified.delta)}\``,
'<br />',
`\`${formatBytes(entry.gzippedSize + entry.diff.gzip.delta)}\``,
`\`${formatBytes(entry.gzippedSize - entry.diff.gzip.delta)}\``,
].join('');

@@ -92,0 +92,0 @@ const after = [`\`${formatBytes(entry.minifiedSize)}\``, '<br />', `\`${formatBytes(entry.gzippedSize)}\``].join(

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc