Possible JSON diff typo on "Getting started" page?

On Getting started > Creating a new app > Editing the manifest.json file > Step 5, the current JSON diff (as of Feb 18, 2022) is:

"dependencies": {
+   "vtex.styleguide: 9.x"
}

I believe the key/value pair quotes are missing:

"dependencies": {
-   "vtex.styleguide: 9.x"
+   "vtex.styleguide": "9.x"
}

Please, let me know if I’m mistaken.

3 Likes

@thiagovilla0 , I believe that, in addition to having to first check the most current version of each dependency, the correct writing would always be in this format: "name.of.dependence": "0.x", for example… both the name of the dependency as your versioning must have quotes.

1 Like