1
0
Fork 0
mirror of synced 2024-06-14 00:14:39 +12:00

Merge pull request #8722 from Budibase/bug/sev4/week-date-format

Extend date formatting
This commit is contained in:
melohagan 2022-11-21 11:33:03 +00:00 committed by GitHub
commit 20e410d055
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,9 @@
const dayjs = require("dayjs")
dayjs.extend(require("dayjs/plugin/duration"))
dayjs.extend(require("dayjs/plugin/advancedFormat"))
dayjs.extend(require("dayjs/plugin/isoWeek"))
dayjs.extend(require("dayjs/plugin/weekYear"))
dayjs.extend(require("dayjs/plugin/weekOfYear"))
dayjs.extend(require("dayjs/plugin/relativeTime"))
dayjs.extend(require("dayjs/plugin/utc"))
dayjs.extend(require("dayjs/plugin/timezone"))