I've been trying to animate some personal work but im stumbling with these errors.

Could it be a conflict with my scripts?
Can you post an example? Seems like the error is originating from animations.js.
Here you go

I was having this issue also - I think it is related to using css word-colors like "red" on ln27 of your example.
The unminified error:

"tweens" from "normalizeTweens" function in anime.js is undefined
@ChristopherSant, I believe @jeffcato is right. Try using a hex code instead for colors (e.g., #FF0000).
I'm getting this same error when trying to use it with textDecoration: 'underline'.
I'm getting the samer error when using visibility: 'visible'
@marko-mlinarevic : Same here.
visibility: 'visible'
undefined is not an object (evaluating 'd[d.length-1].end')
'visible', 'underline' are not valid values since they don't contain any number, and anime only accepts hex, rgb, rgba, hsl and hsla color values, no color names like 'red'.
visibility can be replaced by opacity.
Not sure about text-decoration, by maybe border-bottom?
And of course red can be replaced by #F00.
Most helpful comment
I'm getting the samer error when using
visibility: 'visible'