3 Commits

Author SHA1 Message Date
6efab60a6f update description 2024-05-29 14:13:16 +02:00
154e42e745 1.0.3 2024-04-23 19:25:34 +02:00
cfe11e9a60 fix(core): update 2024-04-23 19:25:34 +02:00
3 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@push.rocks/smartformat",
"version": "1.0.2",
"version": "1.0.3",
"private": false,
"description": "A module that formats bytes and milliseconds into human-readable strings.",
"main": "dist_ts/index.js",
@ -27,12 +27,12 @@
},
"repository": {
"type": "git",
"url": "git+https://code.foss.global/push.rocks/smartformat.git"
"url": "https://code.foss.global/push.rocks/smartformat.git"
},
"bugs": {
"url": "https://code.foss.global/push.rocks/smartformat/issues"
},
"homepage": "https://code.foss.global/push.rocks/smartformat#readme",
"homepage": "https://code.foss.global/push.rocks/smartformat",
"browserslist": [
"last 1 chrome versions"
],

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartformat',
version: '1.0.2',
version: '1.0.3',
description: 'A module that formats bytes and milliseconds into human-readable strings.'
}

View File

@ -1,6 +1,6 @@
// sindresorhus
import * as prettyBytes from 'pretty-bytes';
import * as prettyMs from 'pretty-ms';
import prettyBytes from 'pretty-bytes';
import prettyMs from 'pretty-ms';
export {
prettyBytes,