@alwatr/parse-duration 1.1.7 → 1.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/dist/main.cjs +2 -2
- package/dist/main.mjs +2 -2
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.1.8](https://github.com/Alwatr/nanolib/compare/@alwatr/parse-duration@1.1.7...@alwatr/parse-duration@1.1.8) (2024-11-02)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @alwatr/parse-duration
|
|
9
|
+
|
|
6
10
|
## [1.1.7](https://github.com/Alwatr/nanolib/compare/@alwatr/parse-duration@1.1.6...@alwatr/parse-duration@1.1.7) (2024-10-25)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @alwatr/parse-duration
|
package/dist/main.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* @alwatr/parse-duration v1.1.
|
|
1
|
+
/* @alwatr/parse-duration v1.1.8 */
|
|
2
2
|
"use strict";
|
|
3
3
|
var __defProp = Object.defineProperty;
|
|
4
4
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -26,7 +26,7 @@ __export(main_exports, {
|
|
|
26
26
|
module.exports = __toCommonJS(main_exports);
|
|
27
27
|
var import_is_number = require("@alwatr/is-number");
|
|
28
28
|
var import_package_tracer = require("@alwatr/package-tracer");
|
|
29
|
-
__dev_mode__: import_package_tracer.packageTracer.add("@alwatr/parse-duration", "1.1.
|
|
29
|
+
__dev_mode__: import_package_tracer.packageTracer.add("@alwatr/parse-duration", "1.1.8");
|
|
30
30
|
var unitConversion_ = {
|
|
31
31
|
s: 1e3,
|
|
32
32
|
m: 6e4,
|
package/dist/main.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
/* @alwatr/parse-duration v1.1.
|
|
1
|
+
/* @alwatr/parse-duration v1.1.8 */
|
|
2
2
|
|
|
3
3
|
// src/main.ts
|
|
4
4
|
import { isNumber } from "@alwatr/is-number";
|
|
5
5
|
import { packageTracer } from "@alwatr/package-tracer";
|
|
6
|
-
__dev_mode__: packageTracer.add("@alwatr/parse-duration", "1.1.
|
|
6
|
+
__dev_mode__: packageTracer.add("@alwatr/parse-duration", "1.1.8");
|
|
7
7
|
var unitConversion_ = {
|
|
8
8
|
s: 1e3,
|
|
9
9
|
m: 6e4,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwatr/parse-duration",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.8",
|
|
4
4
|
"description": "A simple utility to parse a duration string into milliseconds number.",
|
|
5
5
|
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
|
|
6
6
|
"keywords": [
|
|
@@ -70,15 +70,15 @@
|
|
|
70
70
|
"clean": "rm -rfv dist *.tsbuildinfo"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@alwatr/is-number": "^1.1.
|
|
74
|
-
"@alwatr/package-tracer": "^1.0.
|
|
73
|
+
"@alwatr/is-number": "^1.1.8",
|
|
74
|
+
"@alwatr/package-tracer": "^1.0.8"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
|
-
"@alwatr/nano-build": "^2.0.
|
|
77
|
+
"@alwatr/nano-build": "^2.0.4",
|
|
78
78
|
"@alwatr/prettier-config": "^1.0.6",
|
|
79
79
|
"@alwatr/tsconfig-base": "^1.3.3",
|
|
80
80
|
"jest": "^29.7.0",
|
|
81
81
|
"typescript": "^5.6.3"
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "5aecc962a161034aa9213dcc5fb3c1cece9eaca2"
|
|
84
84
|
}
|