@expo/build-tools 1.0.41 → 1.0.43

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -12,7 +12,7 @@ Additional Use Grant: You may make use of the Licensed Work, provided that you d
12
12
  to access the functionality of and directly benefit from the
13
13
  functionality of the Licensed Work.
14
14
 
15
- Change Date: 2026-04-01
15
+ Change Date: 2026-09-11
16
16
 
17
17
  Change License: MIT
18
18
 
package/dist/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import * as Builders from './builders';
2
2
  export { Builders };
3
3
  export { Artifacts, ArtifactType, BuildContext, CacheManager, LogBuffer, SkipNativeBuildError, } from './context';
4
+ export { PackageManager } from './utils/packageManager';
4
5
  export { findAndUploadXcodeBuildLogsAsync } from './ios/xcodeBuildLogs';
5
6
  export { Hook, runHookIfPresent } from './utils/hooks';
package/dist/index.js CHANGED
@@ -23,13 +23,15 @@ var __importStar = (this && this.__importStar) || function (mod) {
23
23
  return result;
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.runHookIfPresent = exports.Hook = exports.findAndUploadXcodeBuildLogsAsync = exports.SkipNativeBuildError = exports.BuildContext = exports.ArtifactType = exports.Builders = void 0;
26
+ exports.runHookIfPresent = exports.Hook = exports.findAndUploadXcodeBuildLogsAsync = exports.PackageManager = exports.SkipNativeBuildError = exports.BuildContext = exports.ArtifactType = exports.Builders = void 0;
27
27
  const Builders = __importStar(require("./builders"));
28
28
  exports.Builders = Builders;
29
29
  var context_1 = require("./context");
30
30
  Object.defineProperty(exports, "ArtifactType", { enumerable: true, get: function () { return context_1.ArtifactType; } });
31
31
  Object.defineProperty(exports, "BuildContext", { enumerable: true, get: function () { return context_1.BuildContext; } });
32
32
  Object.defineProperty(exports, "SkipNativeBuildError", { enumerable: true, get: function () { return context_1.SkipNativeBuildError; } });
33
+ var packageManager_1 = require("./utils/packageManager");
34
+ Object.defineProperty(exports, "PackageManager", { enumerable: true, get: function () { return packageManager_1.PackageManager; } });
33
35
  var xcodeBuildLogs_1 = require("./ios/xcodeBuildLogs");
34
36
  Object.defineProperty(exports, "findAndUploadXcodeBuildLogsAsync", { enumerable: true, get: function () { return xcodeBuildLogs_1.findAndUploadXcodeBuildLogsAsync; } });
35
37
  var hooks_1 = require("./utils/hooks");
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,qDAAuC;AAE9B,4BAAQ;AAEjB,qCAOmB;AALjB,uGAAA,YAAY,OAAA;AACZ,uGAAA,YAAY,OAAA;AAGZ,+GAAA,oBAAoB,OAAA;AAGtB,uDAAwE;AAA/D,kIAAA,gCAAgC,OAAA;AAEzC,uCAAuD;AAA9C,6FAAA,IAAI,OAAA;AAAE,yGAAA,gBAAgB,OAAA","sourcesContent":["import * as Builders from './builders';\n\nexport { Builders };\n\nexport {\n Artifacts,\n ArtifactType,\n BuildContext,\n CacheManager,\n LogBuffer,\n SkipNativeBuildError,\n} from './context';\n\nexport { findAndUploadXcodeBuildLogsAsync } from './ios/xcodeBuildLogs';\n\nexport { Hook, runHookIfPresent } from './utils/hooks';\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,qDAAuC;AAE9B,4BAAQ;AAEjB,qCAOmB;AALjB,uGAAA,YAAY,OAAA;AACZ,uGAAA,YAAY,OAAA;AAGZ,+GAAA,oBAAoB,OAAA;AAGtB,yDAAwD;AAA/C,gHAAA,cAAc,OAAA;AAEvB,uDAAwE;AAA/D,kIAAA,gCAAgC,OAAA;AAEzC,uCAAuD;AAA9C,6FAAA,IAAI,OAAA;AAAE,yGAAA,gBAAgB,OAAA","sourcesContent":["import * as Builders from './builders';\n\nexport { Builders };\n\nexport {\n Artifacts,\n ArtifactType,\n BuildContext,\n CacheManager,\n LogBuffer,\n SkipNativeBuildError,\n} from './context';\n\nexport { PackageManager } from './utils/packageManager';\n\nexport { findAndUploadXcodeBuildLogsAsync } from './ios/xcodeBuildLogs';\n\nexport { Hook, runHookIfPresent } from './utils/hooks';\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo/build-tools",
3
- "version": "1.0.41",
3
+ "version": "1.0.43",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [
@@ -24,7 +24,7 @@
24
24
  "@expo/config": "^8.1.2",
25
25
  "@expo/config-plugins": "^7.2.4",
26
26
  "@expo/downloader": "1.0.37",
27
- "@expo/eas-build-job": "1.0.40",
27
+ "@expo/eas-build-job": "1.0.43",
28
28
  "@expo/logger": "1.0.37",
29
29
  "@expo/package-manager": "^1.0.2",
30
30
  "@expo/plist": "^0.0.20",
@@ -65,5 +65,5 @@
65
65
  "node": "18.13.0",
66
66
  "yarn": "1.22.19"
67
67
  },
68
- "gitHead": "42f17a64cb6c504ac96e5569e487e34d1ac19e7e"
68
+ "gitHead": "3b05ce127d24bbc8070bf2bd1dd3efdc079041af"
69
69
  }