@sjts/lib-date 30.1.2 → 30.1.4
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/dist/index.d.ts +6 -6
- package/dist/index.js +6 -6
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
|
+
export * from './DateConsts.js';
|
|
2
|
+
export * from './DateRange.js';
|
|
3
|
+
export * from './Duration.js';
|
|
4
|
+
export * from './DurationUnit.js';
|
|
5
|
+
export * from './Tense.js';
|
|
6
|
+
export * from './TimeFrame.js';
|
|
1
7
|
export * from './addDuration.js';
|
|
2
8
|
export * from './calcDateRangeDiff.js';
|
|
3
9
|
export * from './calcDateRangeGaps.js';
|
|
4
10
|
export * from './calcDateRangeOverlap.js';
|
|
5
|
-
export * from './DateConsts.js';
|
|
6
|
-
export * from './DateRange.js';
|
|
7
11
|
export * from './dateRange2Tense.js';
|
|
8
12
|
export * from './dateTime2Timestamp.js';
|
|
9
|
-
export * from './Duration.js';
|
|
10
13
|
export * from './durationAgo.js';
|
|
11
|
-
export * from './DurationUnit.js';
|
|
12
14
|
export * from './humanDiff.js';
|
|
13
15
|
export * from './isDateWithinRange.js';
|
|
14
16
|
export * from './mergeDateRanges.js';
|
|
@@ -16,8 +18,6 @@ export * from './newDateFromISO.js';
|
|
|
16
18
|
export * from './newDateFromJS.js';
|
|
17
19
|
export * from './newDateFromMillis.js';
|
|
18
20
|
export * from './noOfWeekdays.js';
|
|
19
|
-
export * from './Tense.js';
|
|
20
|
-
export * from './TimeFrame.js';
|
|
21
21
|
export * from './timeFrame2DateRange.js';
|
|
22
22
|
export * from './timeFrame2Tense.js';
|
|
23
23
|
export * from './timestamp2DateTime.js';
|
package/dist/index.js
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
|
+
export * from './DateConsts.js';
|
|
2
|
+
export * from './DateRange.js';
|
|
3
|
+
export * from './Duration.js';
|
|
4
|
+
export * from './DurationUnit.js';
|
|
5
|
+
export * from './Tense.js';
|
|
6
|
+
export * from './TimeFrame.js';
|
|
1
7
|
export * from './addDuration.js';
|
|
2
8
|
export * from './calcDateRangeDiff.js';
|
|
3
9
|
export * from './calcDateRangeGaps.js';
|
|
4
10
|
export * from './calcDateRangeOverlap.js';
|
|
5
|
-
export * from './DateConsts.js';
|
|
6
|
-
export * from './DateRange.js';
|
|
7
11
|
export * from './dateRange2Tense.js';
|
|
8
12
|
export * from './dateTime2Timestamp.js';
|
|
9
|
-
export * from './Duration.js';
|
|
10
13
|
export * from './durationAgo.js';
|
|
11
|
-
export * from './DurationUnit.js';
|
|
12
14
|
export * from './humanDiff.js';
|
|
13
15
|
export * from './isDateWithinRange.js';
|
|
14
16
|
export * from './mergeDateRanges.js';
|
|
@@ -16,8 +18,6 @@ export * from './newDateFromISO.js';
|
|
|
16
18
|
export * from './newDateFromJS.js';
|
|
17
19
|
export * from './newDateFromMillis.js';
|
|
18
20
|
export * from './noOfWeekdays.js';
|
|
19
|
-
export * from './Tense.js';
|
|
20
|
-
export * from './TimeFrame.js';
|
|
21
21
|
export * from './timeFrame2DateRange.js';
|
|
22
22
|
export * from './timeFrame2Tense.js';
|
|
23
23
|
export * from './timestamp2DateTime.js';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sjts/lib-date",
|
|
3
3
|
"description": "The Steve James Typescript date utils package",
|
|
4
|
-
"version": "30.1.
|
|
4
|
+
"version": "30.1.4",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"module": "./dist/index.js",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"luxon": "3.1.1"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@sjts/lib-devops": "30.1.
|
|
29
|
+
"@sjts/lib-devops": "30.1.4",
|
|
30
30
|
"typescript": "^5.8.3"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|