Files

29 lines
503 B
Markdown
Raw Normal View History

2018-10-12 15:37:13 -04:00
---
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
---
## Hints
2018-10-12 15:37:13 -04:00
## Hint 1
* the package `moment` should be in your package.json, specifically in the
dependencies property.
2018-10-12 15:37:13 -04:00
## Hint 2
* `moment` version should have a caret character within it.
2018-10-12 15:37:13 -04:00
---
## Solutions
<details><summary>Solution 1 (Click to Show/Hide)</summary>
```json
"dependencies": {
"moment": "^2.10.2"
}
```
</details>