From e877d9c7d592450970cac8e5e61ce576c67ea4a7 Mon Sep 17 00:00:00 2001 From: Mahesh Jaganiya <34797952+jagzmz@users.noreply.github.com> Date: Fri, 17 May 2019 21:37:16 +0530 Subject: [PATCH] Semantic versioning required (#36074) Node build fails for "1.2" --- .../add-a-version-to-your-package.json.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/05-apis-and-microservices/managing-packages-with-npm/add-a-version-to-your-package.json.english.md b/curriculum/challenges/english/05-apis-and-microservices/managing-packages-with-npm/add-a-version-to-your-package.json.english.md index 03b32c6f87..9054765a14 100644 --- a/curriculum/challenges/english/05-apis-and-microservices/managing-packages-with-npm/add-a-version-to-your-package.json.english.md +++ b/curriculum/challenges/english/05-apis-and-microservices/managing-packages-with-npm/add-a-version-to-your-package.json.english.md @@ -9,7 +9,7 @@ challengeType: 2 A version is one of the required fields of your package.json file. This field describes the current version of your project. Here's an example: ```json -"version": "1.2", +"version": "1.2.0", ```