Releases: VitorLuizC/format-date
Releases · VitorLuizC/format-date
Version 1.3.0
Minor Changes
-
Add formatter tokens
A
("AM" and "PM") anda
("am" and "pm").Thanks to @alexgritton for PR #5.
-
Upgrade devDependencies and use bitty's lockfile.
Version 1.1.1
Patch Changes
- Add
"sideEffects": false
topackage.json
. - Remove sourceMaps of removed type declaration files in published package.
Version 1.1.0
Minor Changes
- Improve JSDoc comments.
- Improve Tokens section on README.
- Reduce the code size a bit using recursion instead of
while
onaddZeroPads
.
Version 1.0.0
Version 1.0.0
BREAKING CHANGES
- The library was renamed and putted under
@bitty
scope. - Change entries due to new bundle strategy:
cdn
entry was changed fromdist/tiny-date-format.umd.min.js
todist/tiny-date-format.umd.js
;main
entry was changed fromdist/tiny-date-format.js
todist/tiny-date-format.js
;unpkg
entry was changed fromdist/tiny-date-format.umd.min.js
todist/tiny-date-format.umd.js
;types
entry was changed fromtypes/tiny-date-format.d.ts
totypes/tiny-date-format.d.ts
;module
entry was changed fromdist/tiny-date-format.esm.js
todist/tiny-date-format.esm.js
;jsdelivr
entry was changed fromdist/tiny-date-format.umd.min.js
todist/tiny-date-format.umd.js
;browser
entry was removed.umd:main
was added and points todist/tiny-date-format.umd.js
;
Maintenance/Other Changes
- Use
@bitty
strategy for package managing, bundle, test and lint.
Version 0.1.1
- Fixed README.md link.
Version 0.1.0
- Created formatters supporting
DD
,D
,MM
,M
,YYYY
,YY
,HH
,H
,mm
,m
,ss
ands
moment's tokens; - Created formatters supporting moment's escape;