Files
Matheus Genteluci df3c470b46 Use the caret character to use the latest minor.. (#34620)
Hints and Solution added to index.md to guides' section
2019-01-15 16:00:40 -06:00

409 B

title
title
Use the Caret-Character to Use the Latest Minor Version of a Dependency

Use the Caret-Character to Use the Latest Minor Version of a Dependency

Hint 1

  • the package moment should be in your package.json, specifically in the dependencies property.

Hint 2

  • moment version should have a caret character within it.

Solution:

"dependencies": {
  "moment": "^2.10.2"
}