fable 3.0.84 → 3.0.85

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fable",
3
- "version": "3.0.84",
3
+ "version": "3.0.85",
4
4
  "description": "An entity behavior management and API bundling library.",
5
5
  "main": "source/Fable.js",
6
6
  "scripts": {
@@ -27,7 +27,7 @@ class DateManipulation extends libFableServiceProviderBase
27
27
  this.plugin_timezone = require('dayjs/plugin/timezone');
28
28
  this.dayJS.extend(this.plugin_timezone);
29
29
  // Include the `relativetime` plugin
30
- this.plugin_relativetime = require('dayjs/plugin/relativetime');
30
+ this.plugin_relativetime = require('dayjs/plugin/relativeTime');
31
31
  this.dayJS.extend(this.plugin_relativetime);
32
32
  // Include the `utc` plugin
33
33
  this.plugin_utc = require('dayjs/plugin/utc');
@@ -33,8 +33,6 @@ suite
33
33
 
34
34
  testFable.log.info(`Guessing your timezone: ${tmpDates.dayJS.tz.guess()}`);
35
35
 
36
- // tmpDates.dayJS.tz('Etc/UTC');
37
-
38
36
  let tmpDate = tmpDates.dayJS.utc("2023-08-10T05:00:00.000Z");
39
37
  testFable.log.trace(`Date formats to: ${tmpDate.format()}`);
40
38
  let tmpDateCentral = tmpDate.tz("America/Chicago");