Files

19 lines
409 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
## 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
## Solution:
```js
"dependencies": {
"moment": "^2.10.2"
}
```