1
What does this character mean in the version of the package json dependencies ? What is the utility ? What will change in my project with this ?
{ "name": "", "description": "", "version": "1.2.3", "devDependencies": { "coffee-script": "^1.6.3" }, "scripts": { "prepare": "" }, "main": "" }
Any version starting at 1.6.3 but not breaking compatibility (usually, accept switch to
minor
, but not ofmajor
; I don’t know the specific case ofnode
meanwhile)– Jefferson Quesado