Compare commits

...

3 commits

Author SHA1 Message Date
0cbe901499 . 2025-11-11 16:02:48 -03:00
84880fff0c build 2025-11-11 16:01:42 -03:00
5b1b6e3c25 melhoria dayjs 2025-11-11 16:00:39 -03:00
5 changed files with 6 additions and 4 deletions

View file

@ -1,6 +1,6 @@
import z from 'zod';
import dayjs from 'dayjs';
export { ManipulateType } from 'dayjs';
export { Dayjs, ManipulateType } from 'dayjs';
import { v4 } from 'uuid';
declare const aleatorio: (tamanho?: number) => string;

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
{
"name": "p-comuns",
"version": "0.291.0",
"version": "0.292.0",
"description": "",
"main": "./dist-front/index.mjs",
"module": "./dist-front/index.mjs",

Binary file not shown.

View file

@ -1,4 +1,4 @@
import dayjs from "dayjs"
import dayjs, { type Dayjs } from "dayjs"
export type { ManipulateType } from "dayjs"
@ -23,3 +23,5 @@ dayjs.extend(relativeTime)
dayjs.extend(duration)
export const dayjsbr = dayjs
export type { Dayjs }