From f7946de58455e11d5783e43ae9c89130084d1ef5 Mon Sep 17 00:00:00 2001 From: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> Date: Thu, 19 Sep 2024 17:27:13 +0200 Subject: [PATCH] docs: update guides/building-release-artifacts.md (#30257) --- guides/building-release-artifacts.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/guides/building-release-artifacts.md b/guides/building-release-artifacts.md index a8b273e0771f..7d3a3a3658c6 100644 --- a/guides/building-release-artifacts.md +++ b/guides/building-release-artifacts.md @@ -1,12 +1,12 @@ # Building Release Artifacts -The `cypress` NPM package consists of two main parts: +The `cypress` npm package consists of two main parts: -1. The `cypress` NPM package `.tgz` (built from [`cli`](../cli)) +1. The `cypress` npm package `.tgz` (built from [`cli`](../cli)) * Contains the command line tool `cypress`, type definitions, and the [Module API](https://on.cypress.io/module-api). - * End users install this via NPM to the project's `node_modules`. -2. The "binary" `.zip` (built from [`packages/server`](../packages/server)) - * Contains the Electron app, `ffmpeg`, and built versions of the [`server`](../packages/server), [`desktop-gui`](../packages/desktop-gui), [`runner`](../packages/runner), [`example` project](../packages/example), and [`extension`](../packages/extension) + * End users install this via npm to the project's `node_modules` directory or via Yarn or pnpm similarly. +2. The "binary" `.zip` (built from the [`packages`](../packages) directory) + * Contains the Electron app, `ffmpeg`, and built versions of the packages from the [`packages`](../packages) sub-directories (`frontend-shared`, `reporter` and `web-config` are not separately included). * Also contains all the production dependencies of the above. * This is installed when the `cli` is installed or when `cypress install` is run, to a system cache.