@bbn/bbn 1.0.112 → 1.0.114
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/bundle.js +1 -2
- package/dist/fn/datetime/calendar.js +1 -2
- package/package.json +1 -1
package/dist/bundle.js
CHANGED
|
@@ -3695,11 +3695,10 @@
|
|
|
3695
3695
|
"use strict";
|
|
3696
3696
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3697
3697
|
exports.calendar = void 0;
|
|
3698
|
-
const { dayjs_plugin_calendar } = calendar_js_1.default;
|
|
3699
3698
|
const bbn = {
|
|
3700
3699
|
_: st => st
|
|
3701
3700
|
};
|
|
3702
|
-
dayjs_min_js_1.default.extend(
|
|
3701
|
+
dayjs_min_js_1.default.extend(calendar_js_1.default);
|
|
3703
3702
|
/**
|
|
3704
3703
|
* Returns a date relative to the current day.
|
|
3705
3704
|
*
|
|
@@ -3,8 +3,7 @@ import { fdate } from "./fdate.js";
|
|
|
3
3
|
import { date } from "./date.js";
|
|
4
4
|
import { isDate } from "../type/isDate.js";
|
|
5
5
|
import { isString } from "../type/isString.js";
|
|
6
|
-
import
|
|
7
|
-
const { dayjs_plugin_calendar } = pkg;
|
|
6
|
+
import dayjs_plugin_calendar from '../../../node_modules/dayjs/plugin/calendar.js';
|
|
8
7
|
const bbn = {
|
|
9
8
|
_: st => st
|
|
10
9
|
};
|