Skip to content

Commit

Permalink
docs: update guides/building-release-artifacts.md (#30257)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcC399 authored Sep 19, 2024
1 parent ce2c52a commit f7946de
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions guides/building-release-artifacts.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down

5 comments on commit f7946de

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on f7946de Sep 19, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the linux x64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/13.14.3/linux-x64/develop-f7946de58455e11d5783e43ae9c89130084d1ef5/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on f7946de Sep 19, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the linux arm64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/13.14.3/linux-arm64/develop-f7946de58455e11d5783e43ae9c89130084d1ef5/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on f7946de Sep 19, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the darwin arm64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/13.14.3/darwin-arm64/develop-f7946de58455e11d5783e43ae9c89130084d1ef5/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on f7946de Sep 19, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the win32 x64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/13.14.3/win32-x64/develop-f7946de58455e11d5783e43ae9c89130084d1ef5/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on f7946de Sep 19, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the darwin x64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/13.14.3/darwin-x64/develop-f7946de58455e11d5783e43ae9c89130084d1ef5/cypress.tgz

Please sign in to comment.