From df3c470b46c928d05be46553a75d38f13dea1eb7 Mon Sep 17 00:00:00 2001 From: Matheus Genteluci Date: Tue, 15 Jan 2019 20:00:40 -0200 Subject: [PATCH] Use the caret character to use the latest minor.. (#34620) Hints and Solution added to index.md to guides' section --- .../index.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/use-the-caret-character-to-use-the-latest-minor-version-of-a-dependency/index.md b/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/use-the-caret-character-to-use-the-latest-minor-version-of-a-dependency/index.md index dec4b05d62..18b0504516 100644 --- a/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/use-the-caret-character-to-use-the-latest-minor-version-of-a-dependency/index.md +++ b/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/use-the-caret-character-to-use-the-latest-minor-version-of-a-dependency/index.md @@ -3,8 +3,16 @@ 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 -This is a stub. Help our community expand it. +## Hint 1 +* the package `moment` should be in your package.json, specifically in the +dependencies property. -This quick style guide will help ensure your pull request gets accepted. +## Hint 2 +* `moment` version should have a caret character within it. - +## Solution: +```js +"dependencies": { + "moment": "^2.10.2" +} +```