Skip to content

Commit cf1dcb7

Browse files
committed
Version bump to release new types declaration
1 parent 4268a4e commit cf1dcb7

8 files changed

+20
-14
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7-
#### [10.1.0](https://github.com/avoidwork/filesize.js/compare/10.1.0...10.1.0)
7+
#### [10.1.1](https://github.com/avoidwork/filesize.js/compare/10.1.0...10.1.1)
8+
9+
- Rework types to allow Parameters<typeof filesize> to function properly [`#180`](https://github.com/avoidwork/filesize.js/pull/180)
10+
- Bump @babel/traverse from 7.23.0 to 7.23.2 [`#178`](https://github.com/avoidwork/filesize.js/pull/178)
11+
- change: rework types to allow usages like Parameters<typeof filesize> [`fbfc87f`](https://github.com/avoidwork/filesize.js/commit/fbfc87f4d24de80813330a74fc30392f8bfb1002)
12+
- Generating CHANGELOG.md [`d80c457`](https://github.com/avoidwork/filesize.js/commit/d80c4579e1259f3a133fed3ae8b6762712b72623)
13+
- fix: types for partial now return a higher order function [`af4a6ef`](https://github.com/avoidwork/filesize.js/commit/af4a6efe8e065ca97916afa19a22af5e42fa2196)
814

915
#### [10.1.0](https://github.com/avoidwork/filesize.js/compare/10.0.13...10.1.0)
1016

dist/filesize.cjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/**
22
* filesize
33
*
4-
* @copyright 2023 Jason Mulligan <[email protected]>
4+
* @copyright 2024 Jason Mulligan <[email protected]>
55
* @license BSD-3-Clause
6-
* @version 10.1.0
6+
* @version 10.1.1
77
*/
88
'use strict';
99

dist/filesize.esm.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/**
22
* filesize
33
*
4-
* @copyright 2023 Jason Mulligan <[email protected]>
4+
* @copyright 2024 Jason Mulligan <[email protected]>
55
* @license BSD-3-Clause
6-
* @version 10.1.0
6+
* @version 10.1.1
77
*/
88
const ARRAY = "array";
99
const BIT = "bit";

dist/filesize.esm.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/filesize.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/**
22
* filesize
33
*
4-
* @copyright 2023 Jason Mulligan <[email protected]>
4+
* @copyright 2024 Jason Mulligan <[email protected]>
55
* @license BSD-3-Clause
6-
* @version 10.1.0
6+
* @version 10.1.1
77
*/
88
(function(g,f){typeof exports==='object'&&typeof module!=='undefined'?f(exports):typeof define==='function'&&define.amd?define(['exports'],f):(g=typeof globalThis!=='undefined'?globalThis:g||self,f(g.filesize={}));})(this,(function(exports){'use strict';const ARRAY = "array";
99
const BIT = "bit";

dist/filesize.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "filesize",
33
"description": "JavaScript library to generate a human readable String describing the file size",
4-
"version": "10.1.0",
4+
"version": "10.1.1",
55
"homepage": "https://filesizejs.com",
66
"author": "Jason Mulligan <[email protected]>",
77
"repository": {

0 commit comments

Comments
 (0)