diff --git a/docs/faststore/docs/reference/project-structure/updating-the-cli-package-version.mdx b/docs/faststore/docs/reference/project-structure/updating-the-cli-package-version.mdx new file mode 100644 index 0000000000..5db25a1618 --- /dev/null +++ b/docs/faststore/docs/reference/project-structure/updating-the-cli-package-version.mdx @@ -0,0 +1,17 @@ +--- +title: "Updating the '@fastore/cli' package version" +--- + +If you need to update the [`@fastore/cli`](https://developers.vtex.com/docs/guides/faststore/project-structure-overview#packagejson) package, follow these instructions. + +> ⚠️ Since the publication of [this release note](https://developers.vtex.com/updates/release-notes/2024-09-11-faststore-cli-dependency), the `@faststore/core` package now depends on the `@faststore/cli` package. Before updating the `@faststore/cli` package, make sure to check if this package is already listed in your dependencies. If not, check out the [release note](https://developers.vtex.com/updates/release-notes/2024-09-11-faststore-cli-dependency) related to this change. + +1. Open your FastStore codebase in the code editor of your preference. + +2. Open the terminal and run the following: + + ```bash + yarn add @faststore/cli@latest + ``` + +3. Run `yarn dev` to sync the changes to your project. diff --git a/docs/faststore/docs/reference/project-structure/updating-the-core-package-version.mdx b/docs/faststore/docs/reference/project-structure/updating-the-core-package-version.mdx deleted file mode 100644 index b87fb6cf80..0000000000 --- a/docs/faststore/docs/reference/project-structure/updating-the-core-package-version.mdx +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Updating the '@fastore/core' package version" ---- - -If you need to update the [`@fastore/core`](https://developers.vtex.com/docs/guides/faststore/project-structure-overview#packagejson) package, follow the instructions below: - -1. Open your FastStore codebase in the code editor of your preference. - -2. Open the terminal and run the following: - - ```bash - yarn add @faststore/core@latest - ``` - -3. Run `yarn dev` to sync the changes to your project.