Skip to content

Commit

Permalink
Merge branch 'main' into stanley/better-eas-no-vcs
Browse files Browse the repository at this point in the history
  • Loading branch information
sjchmiela authored Mar 4, 2025
2 parents 7c95dfb + 7b10160 commit f49d487
Show file tree
Hide file tree
Showing 7 changed files with 129 additions and 98 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ This is the log of notable changes to EAS CLI and related packages.

### 🐛 Bug fixes

### 🧹 Chores

## [15.0.13](https://github.com/expo/eas-cli/releases/tag/v15.0.13) - 2025-03-04

### 🐛 Bug fixes

- Fixed `.git` being always unexpectedly removed if you had `requireCommit: true` and `.easignore` present. ([#2925](https://github.com/expo/eas-cli/pull/2925) by [@sjchmiela](https://github.com/sjchmiela))
- In `EAS_NO_VCS=1`, ask Git for repository root when `EAS_PROJECT_ROOT` is not set. ([#2901](https://github.com/expo/eas-cli/pull/2901) by [@sjchmiela](https://github.com/sjchmiela))

Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"npmClient": "yarn",
"version": "15.0.12",
"version": "15.0.13",
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
}
156 changes: 78 additions & 78 deletions packages/eas-cli/README.md

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions packages/eas-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "eas-cli",
"description": "EAS command line tool",
"version": "15.0.12",
"version": "15.0.13",
"author": "Expo <support@expo.dev>",
"bin": {
"eas": "./bin/run"
Expand All @@ -12,8 +12,8 @@
"@expo/code-signing-certificates": "0.0.5",
"@expo/config": "10.0.6",
"@expo/config-plugins": "9.0.12",
"@expo/eas-build-job": "1.0.165",
"@expo/eas-json": "15.0.0",
"@expo/eas-build-job": "1.0.170",
"@expo/eas-json": "15.0.13",
"@expo/env": "^1.0.0",
"@expo/json-file": "8.3.3",
"@expo/logger": "1.0.117",
Expand All @@ -28,7 +28,7 @@
"@expo/results": "1.0.0",
"@expo/rudder-sdk-node": "1.1.1",
"@expo/spawn-async": "1.7.2",
"@expo/steps": "1.0.166",
"@expo/steps": "1.0.170",
"@expo/timeago.js": "1.0.0",
"@oclif/core": "^1.26.2",
"@oclif/plugin-autocomplete": "^2.3.10",
Expand Down
2 changes: 1 addition & 1 deletion packages/eas-cli/src/build/local.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Log from '../log';
import { ora } from '../ora';

const PLUGIN_PACKAGE_NAME = 'eas-cli-local-build-plugin';
const PLUGIN_PACKAGE_VERSION = '1.0.168';
const PLUGIN_PACKAGE_VERSION = '1.0.171';

export enum LocalBuildMode {
/**
Expand Down
4 changes: 2 additions & 2 deletions packages/eas-json/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@expo/eas-json",
"description": "A library for interacting with eas.json",
"version": "15.0.0",
"version": "15.0.13",
"author": "Expo <support@expo.dev>",
"bugs": "https://github.com/expo/eas-cli/issues",
"dependencies": {
"@babel/code-frame": "7.23.5",
"@expo/eas-build-job": "1.0.165",
"@expo/eas-build-job": "1.0.170",
"chalk": "4.1.2",
"env-string": "1.0.1",
"fs-extra": "11.2.0",
Expand Down
49 changes: 37 additions & 12 deletions yarn.lock

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

0 comments on commit f49d487

Please sign in to comment.