Skip to content
Open
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
7 changes: 5 additions & 2 deletions build/continuous-deploy-fingerprint/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion build/preview-build/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion build/preview/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified bun.lockb
Binary file not shown.
3 changes: 2 additions & 1 deletion src/actions/continuous-deploy-fingerprint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,9 @@ async function getFingerprintHashForPlatformAsync({
}): Promise<string> {
try {
const extraArgs = isDebug() ? ['--debug'] : [];
const cmd = await Promise.any([which('bunx'), which('npx')]);
const { stdout } = await getExecOutput(
'npx',
cmd,
['expo-updates', 'fingerprint:generate', '--platform', platform, ...extraArgs],
{
cwd,
Expand Down
4 changes: 3 additions & 1 deletion src/project.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { getExecOutput } from '@actions/exec';
import { which } from '@actions/io';
import { ExpoConfig } from '@expo/config';

/**
Expand All @@ -10,7 +11,8 @@ export async function loadProjectConfig(cwd: string): Promise<ExpoConfig> {
let stdout = '';

try {
({ stdout } = await getExecOutput('npx', ['expo', 'config', '--json', '--type', 'public'], {
const cmd = await Promise.any([which('bunx'), which('npx')]);
({ stdout } = await getExecOutput(cmd, ['expo', 'config', '--json', '--type', 'public'], {
cwd,
silent: true,
}));
Expand Down