semencov / tailwindcss-font-inter

TailwindCSS Plugin to integrate with Inter Typeface
MIT License
82 stars 4 forks source link

Specify minimum required Node version? #4

Closed moollaza closed 4 years ago

moollaza commented 4 years ago

I ran into issues using this lib because Object.fromEntries() is not available in Node v10, which I was using.

Perhaps the package.json should indicate the minimum required version of node? I think its v12

semencov commented 4 years ago

Thank you for report. I've replaced Object.fromEntries() with lodash methods (anyway TailwindCSS depends on it) in v1.0.8. Tested on Node v10.16. So could you update and test it?

Didn't specified minimum version yet. Will configure CI to test on different Node versions later to make it right.

moollaza commented 4 years ago

@semencov thanks a lot!

So could you update and test it?

I ended up switching to Node v12, but should be able to switch back and test :+1:

moollaza commented 4 years ago

Confirmed it worked with Node V10.17.0 👍

Thanks again @semencov