.
This commit is contained in:
parent
bdab1f75b1
commit
f02f1029b3
5 changed files with 34 additions and 34 deletions
|
|
@ -32,22 +32,22 @@ __export(dayjs_exports, {
|
||||||
});
|
});
|
||||||
module.exports = __toCommonJS(dayjs_exports);
|
module.exports = __toCommonJS(dayjs_exports);
|
||||||
var import_dayjs = __toESM(require("dayjs"));
|
var import_dayjs = __toESM(require("dayjs"));
|
||||||
var duration = __toESM(require("dayjs/plugin/duration"));
|
var import_duration = __toESM(require("dayjs/plugin/duration"));
|
||||||
var isSameOrAfter = __toESM(require("dayjs/plugin/isSameOrAfter"));
|
var import_isSameOrAfter = __toESM(require("dayjs/plugin/isSameOrAfter"));
|
||||||
var isSameOrBefore = __toESM(require("dayjs/plugin/isSameOrBefore"));
|
var import_isSameOrBefore = __toESM(require("dayjs/plugin/isSameOrBefore"));
|
||||||
var minMax = __toESM(require("dayjs/plugin/minMax"));
|
var import_minMax = __toESM(require("dayjs/plugin/minMax"));
|
||||||
var relativeTime = __toESM(require("dayjs/plugin/relativeTime"));
|
var import_relativeTime = __toESM(require("dayjs/plugin/relativeTime"));
|
||||||
var timezone = __toESM(require("dayjs/plugin/timezone"));
|
var import_timezone = __toESM(require("dayjs/plugin/timezone"));
|
||||||
var utc = __toESM(require("dayjs/plugin/utc"));
|
var import_utc = __toESM(require("dayjs/plugin/utc"));
|
||||||
var weekOfYear = __toESM(require("dayjs/plugin/weekOfYear"));
|
var import_weekOfYear = __toESM(require("dayjs/plugin/weekOfYear"));
|
||||||
import_dayjs.default.extend(utc.default);
|
import_dayjs.default.extend(import_utc.default);
|
||||||
import_dayjs.default.extend(timezone.default);
|
import_dayjs.default.extend(import_timezone.default);
|
||||||
import_dayjs.default.extend(weekOfYear.default);
|
import_dayjs.default.extend(import_weekOfYear.default);
|
||||||
import_dayjs.default.extend(isSameOrBefore.default);
|
import_dayjs.default.extend(import_isSameOrBefore.default);
|
||||||
import_dayjs.default.extend(isSameOrAfter.default);
|
import_dayjs.default.extend(import_isSameOrAfter.default);
|
||||||
import_dayjs.default.extend(minMax.default);
|
import_dayjs.default.extend(import_minMax.default);
|
||||||
import_dayjs.default.extend(relativeTime.default);
|
import_dayjs.default.extend(import_relativeTime.default);
|
||||||
import_dayjs.default.extend(duration.default);
|
import_dayjs.default.extend(import_duration.default);
|
||||||
// Annotate the CommonJS export names for ESM import in node:
|
// Annotate the CommonJS export names for ESM import in node:
|
||||||
0 && (module.exports = {
|
0 && (module.exports = {
|
||||||
dayjsbr
|
dayjsbr
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "p-comuns",
|
"name": "p-comuns",
|
||||||
"version": "0.268.0",
|
"version": "0.269.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "./dist-back/index.js",
|
"main": "./dist-back/index.js",
|
||||||
"module": "./dist-front/index.mjs",
|
"module": "./dist-front/index.mjs",
|
||||||
|
|
|
||||||
BIN
pacote.tgz
BIN
pacote.tgz
Binary file not shown.
32
src/dayjs.ts
32
src/dayjs.ts
|
|
@ -2,22 +2,22 @@ import dayjsbr from "dayjs"
|
||||||
|
|
||||||
export type { ManipulateType } from "dayjs"
|
export type { ManipulateType } from "dayjs"
|
||||||
|
|
||||||
import * as duration from "dayjs/plugin/duration"
|
import duration from "dayjs/plugin/duration"
|
||||||
import * as isSameOrAfter from "dayjs/plugin/isSameOrAfter"
|
import isSameOrAfter from "dayjs/plugin/isSameOrAfter"
|
||||||
import * as isSameOrBefore from "dayjs/plugin/isSameOrBefore"
|
import isSameOrBefore from "dayjs/plugin/isSameOrBefore"
|
||||||
import * as minMax from "dayjs/plugin/minMax"
|
import minMax from "dayjs/plugin/minMax"
|
||||||
import * as relativeTime from "dayjs/plugin/relativeTime"
|
import relativeTime from "dayjs/plugin/relativeTime"
|
||||||
import * as timezone from "dayjs/plugin/timezone"
|
import timezone from "dayjs/plugin/timezone"
|
||||||
import * as utc from "dayjs/plugin/utc"
|
import utc from "dayjs/plugin/utc"
|
||||||
import * as weekOfYear from "dayjs/plugin/weekOfYear"
|
import weekOfYear from "dayjs/plugin/weekOfYear"
|
||||||
|
|
||||||
dayjsbr.extend(utc.default)
|
dayjsbr.extend(utc)
|
||||||
dayjsbr.extend(timezone.default)
|
dayjsbr.extend(timezone)
|
||||||
dayjsbr.extend(weekOfYear.default)
|
dayjsbr.extend(weekOfYear)
|
||||||
dayjsbr.extend(isSameOrBefore.default)
|
dayjsbr.extend(isSameOrBefore)
|
||||||
dayjsbr.extend(isSameOrAfter.default)
|
dayjsbr.extend(isSameOrAfter)
|
||||||
dayjsbr.extend(minMax.default)
|
dayjsbr.extend(minMax)
|
||||||
dayjsbr.extend(relativeTime.default)
|
dayjsbr.extend(relativeTime)
|
||||||
dayjsbr.extend(duration.default)
|
dayjsbr.extend(duration)
|
||||||
|
|
||||||
export { dayjsbr }
|
export { dayjsbr }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue