Skip to content

Commit 400b3e3

Browse files
committed
Updating dependencies
1 parent 4f69ad3 commit 400b3e3

10 files changed

+861
-3413
lines changed

.eslintrc

-175
This file was deleted.

.npmignore

-8
This file was deleted.

dist/filesize.cjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* @copyright 2024 Jason Mulligan <[email protected]>
55
* @license BSD-3-Clause
6-
* @version 10.1.2
6+
* @version 10.1.3
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 2024 Jason Mulligan <[email protected]>
55
* @license BSD-3-Clause
6-
* @version 10.1.2
6+
* @version 10.1.3
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* @copyright 2024 Jason Mulligan <[email protected]>
55
* @license BSD-3-Clause
6-
* @version 10.1.2
6+
* @version 10.1.3
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

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

eslint.config.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import globals from "globals";
2+
import pluginJs from "@eslint/js";
3+
4+
export default [
5+
{
6+
languageOptions: {
7+
globals: {
8+
...globals.browser, ...globals.node, ...globals.amd,
9+
it: true,
10+
describe: true,
11+
BigInt: true,
12+
beforeEach: true
13+
}
14+
}
15+
},
16+
pluginJs.configs.recommended,
17+
];

0 commit comments

Comments
 (0)