Skip to content

Commit

Permalink
Version bump to release reverted README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
avoidwork committed Sep 29, 2022
1 parent 87f817c commit ee1a977
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion dist/filesize.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* @copyright 2022 Jason Mulligan <jason.mulligan@avoidwork.com>
* @license BSD-3-Clause
* @version 10.0.3
* @version 10.0.5
*/
'use strict';

Expand Down
2 changes: 1 addition & 1 deletion dist/filesize.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* @copyright 2022 Jason Mulligan <jason.mulligan@avoidwork.com>
* @license BSD-3-Clause
* @version 10.0.3
* @version 10.0.5
*/
const ARRAY = "array";
const BIT = "bit";
Expand Down
2 changes: 1 addition & 1 deletion dist/filesize.esm.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/filesize.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* @copyright 2022 Jason Mulligan <jason.mulligan@avoidwork.com>
* @license BSD-3-Clause
* @version 10.0.3
* @version 10.0.5
*/
(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";
const BIT = "bit";
Expand Down
2 changes: 1 addition & 1 deletion dist/filesize.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "filesize",
"description": "JavaScript library to generate a human readable String describing the file size",
"version": "10.0.4",
"version": "10.0.5",
"homepage": "https://filesizejs.com",
"author": "Jason Mulligan <jason.mulligan@avoidwork.com>",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/filesize.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,4 +207,4 @@ export function partial ({
roundingMethod,
precision
});
};
}
4 changes: 1 addition & 3 deletions test/filesize_test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import assert from "node:assert";
import filesize from "../dist/filesize.esm.js";

const partial = filesize.partial;
import {filesize, partial} from "../dist/filesize.esm.js";

describe("Testing functionality", function () {
beforeEach(function () {
Expand Down

0 comments on commit ee1a977

Please sign in to comment.