Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refer to npm consistently #5757

Merged
merged 1 commit into from
Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/guides/continuous-integration/github-actions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
# Install NPM dependencies, cache them correctly
# Install npm dependencies, cache them correctly
# and run all Cypress tests
- name: Cypress run
uses: cypress-io/github-action@v6
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ such as AWS AppSync for GraphQL APIs or AWS API Gateway for REST APIs. These
backend services can be configured to verify cognito JWTs without additional
code. However, if you are hosting a webserver backend, like the [cypress
real-world app](https://github.com/cypress-io/cypress-realworld-app) does with
the Express NPM library, it must be adapted, as the real-world app is, to verify
the Express npm library, it must be adapted, as the real-world app is, to verify
the Cognito JWTs to authorize the frontend's requests.

:::
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/guides/launching-browsers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ these steps:

1. Add `experimentalWebKitSupport: true` to your
[configuration](/guides/references/configuration) to enable the experiment.
2. Install the `playwright-webkit` NPM package in your repo to acquire WebKit
2. Install the `playwright-webkit` npm package in your repo to acquire WebKit
itself: `npm install --save-dev [email protected]`.
- We built this experiment on top of the Playwright WebKit browser as a
stepping stone towards creating a better UX with Cypress-provided browsers
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/references/advanced-installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ CYPRESS_DOWNLOAD_PATH_TEMPLATE=\${endpoint}/\${platform}-\${arch}/cypress.zip

## Using a custom certificate authority (CA)

Cypress can be configured to use the `ca` and `cafile` options from your NPM
Cypress can be configured to use the `ca` and `cafile` options from your npm
config file to download the Cypress binary.

For example, to use the CA at `/home/person/certs/ca.crt` when downloading
Expand Down
6 changes: 3 additions & 3 deletions docs/guides/references/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3275,7 +3275,7 @@ _Released 1/31/2022_
**Bugfixes:**

- Fixed a regression in [9.4.0](/guides/references/changelog#9-4-0) where the
line endings in the public NPM package prevented some users from running
line endings in the public npm package prevented some users from running
Cypress. Fixes [#19986](https://github.com/cypress-io/cypress/issues/19986).

## 9.4.0
Expand Down Expand Up @@ -4244,7 +4244,7 @@ _Released 05/10/2021_
- Setting the env var `DEBUG=cypress:server:record:ci-info` will print commit
information and CI provider information that's sent to the Dashboard as debug
logs. Addresses [#16236](https://github.com/cypress-io/cypress/issues/16236).
- Cypress can now use the certificate authority specified in NPM config if
- Cypress can now use the certificate authority specified in npm config if
`CYPRESS_DOWNLOAD_USE_CA` is specified. See
["Using a custom CA"](/guides/references/advanced-installation#Using-a-custom-certificate-authority-CA)
for more information. Addresses
Expand Down Expand Up @@ -14381,7 +14381,7 @@ _Released 08/06/2015_
tool has been created which abstracts away these differences and orchestrates
the Desktop App regardless of which OS you are running.
- This
[CLI tool is now published on NPM](https://www.npmjs.com/package/cypress),
[CLI tool is now published on npm](https://www.npmjs.com/package/cypress),
though the documentation still needs to be written.
- There is now a download service to access the latest version of Cypress and
previous versions.
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/tooling/plugins-guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ can `npm install` any of the plugins listed below:
Plugins from our [official list](/plugins) are npm modules. This enables them to
be versioned and updated separately without needing to update Cypress itself.

You can install any published plugin using NPM:
You can install any published plugin using npm:

```shell
npm install <plugin name> --save-dev
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/tooling/typescript-support.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ Both Jest and Expect (bundled inside Cypress) provide the clashing types for the
1. Configure a separate `tsconfig.json` for E2E tests. See our example
[cypress-io/cypress-and-jest-typescript-example](https://github.com/cypress-io/cypress-and-jest-typescript-example)
repo.
2. Remove Cypress global variables by using NPM package
2. Remove Cypress global variables by using npm package
[local-cypress](https://github.com/bahmutov/local-cypress). Read the blog
post
[How to Avoid Using Global Cypress Variables](https://glebbahmutov.com/blog/local-cypress/)
Expand Down
Loading