From 52d0ff531907b872656bbc2aa21fca23c8c72fe0 Mon Sep 17 00:00:00 2001 From: Jose Toledo Date: Tue, 15 Jan 2019 13:53:01 -0800 Subject: [PATCH] Added a version code example for package.json (#25490) --- .../add-a-version-to-your-package.json/index.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/add-a-version-to-your-package.json/index.md b/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/add-a-version-to-your-package.json/index.md index 42f5c64769..c00c040e18 100644 --- a/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/add-a-version-to-your-package.json/index.md +++ b/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/add-a-version-to-your-package.json/index.md @@ -3,8 +3,11 @@ title: Add a Version to Your package.json --- ## Add a Version to Your package.json -This is a stub. Help our community expand it. - -This quick style guide will help ensure your pull request gets accepted. - +You should go over to the package.json file in your project. Versions follow a similar convention as this: + +```code +"version": "x.x.x" +``` + +Help our community expand these hints and guides.