Skip to content

Commit 36603af

Browse files
committed
chore: release version 5.4.0 with new formatFileSize helper
1 parent d582b2f commit 36603af

4 files changed

Lines changed: 11 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# deverything
22

3+
## 5.4.0
4+
5+
### Minor Changes
6+
7+
- formatFileSize
8+
39
## 5.3.1
410

511
### Patch Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "deverything",
3-
"version": "5.3.1",
3+
"version": "5.4.0",
44
"description": "Everything you need for Dev",
55
"main": "./dist/index.js",
66
"module": "./dist/index.mjs",

src/helpers/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export * from "./filterAlphanumeric";
2020
export * from "./first";
2121
export * from "./firstKey";
2222
export * from "./firstValue";
23+
export * from "./formatFileSize";
2324
export * from "./getCookieByName";
2425
export * from "./getCountryName";
2526
export * from "./getFlagEmoji";
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { defineConfig } from 'vitest/config'
1+
import { defineConfig } from "vitest/config";
22

33
export default defineConfig({
44
test: {
55
globals: true,
6-
environment: 'node',
6+
environment: "node",
77
clearMocks: true,
88
},
9-
})
9+
});

0 commit comments

Comments
 (0)