@bbn/bbn 1.0.200 → 1.0.202
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/bbn.js +32 -19
- package/dist/bbn.js.map +1 -1
- package/dist/index.js +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -14,6 +14,7 @@ import relativeTime from 'dayjs/plugin/relativeTime.js';
|
|
|
14
14
|
import timezone from 'dayjs/plugin/timezone.js';
|
|
15
15
|
import updateLocale from 'dayjs/plugin/updateLocale.js';
|
|
16
16
|
import utc from 'dayjs/plugin/utc.js';
|
|
17
|
+
import weekday from 'dayjs/plugin/weekday.js';
|
|
17
18
|
import weekOfYear from 'dayjs/plugin/weekOfYear.js';
|
|
18
19
|
dayjs.extend(calendar);
|
|
19
20
|
dayjs.extend(dayOfYear);
|
|
@@ -29,6 +30,7 @@ dayjs.extend(relativeTime);
|
|
|
29
30
|
dayjs.extend(timezone);
|
|
30
31
|
dayjs.extend(updateLocale);
|
|
31
32
|
dayjs.extend(utc);
|
|
33
|
+
dayjs.extend(weekday);
|
|
32
34
|
dayjs.extend(weekOfYear);
|
|
33
35
|
import { _ } from './_.js';
|
|
34
36
|
import { $ } from './$.js';
|