Socket
Socket
Sign inDemoInstall

@fluentui/bundle-size

Package Overview
Dependencies
318
Maintainers
13
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.4 to 1.1.5

47

CHANGELOG.json

@@ -5,6 +5,51 @@ {

{
"date": "Fri, 03 Dec 2021 07:35:00 GMT",
"date": "Thu, 21 Apr 2022 07:36:02 GMT",
"tag": "@fluentui/bundle-size_v1.1.5",
"version": "1.1.5",
"comments": {
"patch": [
{
"author": "olfedias@microsoft.com",
"package": "@fluentui/bundle-size",
"commit": "d1ac3a2a447caff9c48724a964cf736d4b2678ce",
"comment": "fix: update icons in Markdown reporter"
}
]
}
},
{
"date": "Wed, 15 Dec 2021 07:31:27 GMT",
"tag": "@fluentui/bundle-size_v1.1.4",
"version": "1.1.4",
"comments": {
"none": [
{
"author": "martinhochel@microsoft.com",
"package": "@fluentui/bundle-size",
"commit": "28ceaaa83cd92a0389c466f0b15b283e3d9b08e4",
"comment": "fixup! fixup! chore: update all jest deps to v25 + apply single version policy"
}
]
}
},
{
"date": "Mon, 13 Dec 2021 07:27:44 GMT",
"tag": "@fluentui/bundle-size_v1.1.4",
"version": "1.1.4",
"comments": {
"none": [
{
"author": "lingfangao@hotmail.com",
"package": "@fluentui/bundle-size",
"commit": "e8092e63498f4d42c54a11325172dd3e6f2d65d6",
"comment": "fix: incorrect promise test"
}
]
}
},
{
"date": "Fri, 03 Dec 2021 07:36:11 GMT",
"tag": "@fluentui/bundle-size_v1.1.4",
"version": "1.1.4",
"comments": {
"patch": [

@@ -11,0 +56,0 @@ {

# Change Log - @fluentui/bundle-size
This log was last generated on Fri, 03 Dec 2021 07:35:00 GMT and should not be manually modified.
This log was last generated on Thu, 21 Apr 2022 07:36:02 GMT and should not be manually modified.
<!-- Start content -->
## [1.1.5](https://github.com/microsoft/fluentui/tree/@fluentui/bundle-size_v1.1.5)
Thu, 21 Apr 2022 07:36:02 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/bundle-size_v1.1.4..@fluentui/bundle-size_v1.1.5)
### Patches
- fix: update icons in Markdown reporter ([PR #22543](https://github.com/microsoft/fluentui/pull/22543) by olfedias@microsoft.com)
## [1.1.4](https://github.com/microsoft/fluentui/tree/@fluentui/bundle-size_v1.1.4)
Fri, 03 Dec 2021 07:35:00 GMT
Fri, 03 Dec 2021 07:36:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/bundle-size_v1.1.3..@fluentui/bundle-size_v1.1.4)

@@ -11,0 +20,0 @@

2

jest.config.js
// @ts-check
/**
* @type {jest.InitialOptions}
* @type {import('@jest/types').Config.InitialOptions}
*/

@@ -6,0 +6,0 @@ module.exports = {

{
"name": "@fluentui/bundle-size",
"version": "1.1.4",
"version": "1.1.5",
"bin": {

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

@@ -19,3 +19,8 @@ const stripAnsi = require('strip-ansi');

print(val) {
return stripAnsi(val);
/**
* test function makes sure that value is the guarded type
*/
const _val = /** @type {string} */ (val);
return stripAnsi(_val);
},

@@ -22,0 +27,0 @@ });

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

const icons = {
increase: 'IncreaseYellow.svg',
decrease: 'Decrease.svg',
increase: 'increase.png',
decrease: 'decrease.png',
};

@@ -25,4 +25,3 @@

*/
const img = iconName =>
`<img aria-hidden="true" src="https://microsoft.github.io/sizeAuditor-website/images/icons/${iconName}" />`;
const img = iconName => `<img aria-hidden="true" src="https://microsoft.github.io/monosize/images/${iconName}" />`;

@@ -29,0 +28,0 @@ if (value < 0) {

@@ -49,4 +49,4 @@ const fs = require('fs').promises;

const fixturePath = await setup(`import something from 'unknown-pkg'`);
expect(buildFixture(fixturePath, true)).rejects.toThrow();
await expect(buildFixture(fixturePath, true)).rejects.toBeDefined();
});
});

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