Skip to content

Commit

Permalink
fix rewriter
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanthemanuel committed Nov 8, 2022
1 parent 6d1af54 commit efd0af7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/binary/binary-cleanup.js
Expand Up @@ -45,7 +45,7 @@ const getDependencyPathsToKeep = async (buildAppDir) => {
// These dependencies are started in a new process or thread and will not have access to the snapshot. They need to be kept in the binary
require.resolve('@packages/server/lib/plugins/child/require_async_child.js', { paths: [buildAppDir] }),
require.resolve('@packages/server/lib/plugins/child/register_ts_node.js', { paths: [buildAppDir] }),
require.resolve('@packages/rewriter/lib/threads/worker.ts', { paths: [buildAppDir] }),
require.resolve('@packages/rewriter/lib/threads/worker.js', { paths: [buildAppDir] }),
// These dependencies use the `require.resolve(<dependency>, { paths: [<path>] })` pattern where <path> is a path within the cypress monorepo. These will not be
// pulled in by esbuild but still need to be kept in the binary.
require.resolve('webpack', { paths: [buildAppDir] }),
Expand Down

4 comments on commit efd0af7

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on efd0af7 Nov 8, 2022

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 platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/11.0.0/linux-x64/ryanm/fix/improve-binary-cleanup-to-look-at-binary-rather-than-monorepo-efd0af71af461bb8690d2545bf82c259938ede54/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on efd0af7 Nov 8, 2022

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 platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/11.0.0/linux-arm64/ryanm/fix/improve-binary-cleanup-to-look-at-binary-rather-than-monorepo-efd0af71af461bb8690d2545bf82c259938ede54/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on efd0af7 Nov 8, 2022

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 platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/11.0.0/darwin-x64/ryanm/fix/improve-binary-cleanup-to-look-at-binary-rather-than-monorepo-efd0af71af461bb8690d2545bf82c259938ede54/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on efd0af7 Nov 8, 2022

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 platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/11.0.0/darwin-arm64/ryanm/fix/improve-binary-cleanup-to-look-at-binary-rather-than-monorepo-efd0af71af461bb8690d2545bf82c259938ede54/cypress.tgz

Please sign in to comment.