Skip to content

Commit 3fbe23e

Browse files
committed
Fixing rollup config (copy/pasta), version bump to release, fixes #162
1 parent 9d81ad1 commit 3fbe23e

9 files changed

+13
-13
lines changed

dist/filesize.cjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* @copyright 2022 Jason Mulligan <[email protected]>
55
* @license BSD-3-Clause
6-
* @version 10.0.1
6+
* @version 10.0.2
77
*/
88
'use strict';
99

dist/filesize.esm.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* @copyright 2022 Jason Mulligan <[email protected]>
55
* @license BSD-3-Clause
6-
* @version 10.0.1
6+
* @version 10.0.2
77
*/
88
const ARRAY = "array";
99
const BIT = "bit";

dist/filesize.esm.min.js

+1-1
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
@@ -3,9 +3,9 @@
33
*
44
* @copyright 2022 Jason Mulligan <[email protected]>
55
* @license BSD-3-Clause
6-
* @version 10.0.1
6+
* @version 10.0.2
77
*/
8-
(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.lru={}));})(this,(function(exports){'use strict';const ARRAY = "array";
8+
(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";
1010
const BITS = "bits";
1111
const BYTE = "byte";

dist/filesize.min.js

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

dist/filesize.min.js.map

+1-1
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.0.1",
4+
"version": "10.0.2",
55
"homepage": "https://filesizejs.com",
66
"author": "Jason Mulligan <[email protected]>",
77
"repository": {

rollup.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ export default [
4040
{
4141
...umdOutBase,
4242
file: `dist/${pkg.name}.js`,
43-
name: "lru"
43+
name: "filesize"
4444
},
4545
{
4646
...umdOutBase,
4747
...minOutBase,
4848
file: `dist/${pkg.name}.min.js`,
49-
name: "lru"
49+
name: "filesize"
5050
}
5151
]
5252
}

0 commit comments

Comments
 (0)