Skip to content
Merged
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
7 changes: 7 additions & 0 deletions projects/expo.dev/eas-cli/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@ build:
- run: yq -i '.version = "{{version}}"' package.json
working-directory: packages/eas-cli

# bufferutil / utf-8-validate are optional native addons of `ws` (pure-JS
# fallback otherwise). They have no aarch64 prebuild, so yarn compiles them,
# and pkgx's bare gcc has no libc headers in node-gyp's subprocess:
# "fatal error: assert.h: No such file or directory". Suppress the build --
# root manifest, which is the only place yarn honours dependenciesMeta.built.
- yq -i '.dependenciesMeta."bufferutil".built = false | .dependenciesMeta."utf-8-validate".built = false' package.json

- yarn install

# `build-ci` not present in v6
Expand Down
Loading