resume-cli icon indicating copy to clipboard operation
resume-cli copied to clipboard

[bug] incompatible Date type between JSON & YAML

Open TechQuery opened this issue 4 years ago • 1 comments

What happened?

Resume data

work:
    - startDate: 2020-01-23

isn't equal to

{
    "work": [
        { "startDate": "2020-01-23" }
    ]
}
So, some themes will crash with:

```Shell
resume export --resume resume.yml

My environment

  • resume-cli: 3.0.3
  • Node.js: 14.15.0

TechQuery avatar Dec 30 '20 17:12 TechQuery

In my experience/testing, this also breaks resume validate calls in v3.0.5

michaeltlombardi avatar Aug 05 '21 14:08 michaeltlombardi