@expo/build-tools 1.0.13 → 1.0.14

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/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  import * as Builders from './builders';
2
2
  export { Builders };
3
3
  export { Artifacts, ArtifactType, BuildContext, CacheManager, LogBuffer, SkipNativeBuildError, } from './context';
4
+ export { findAndUploadXcodeBuildLogsAsync } from './ios/xcodeBuildLogs';
package/dist/index.js CHANGED
@@ -23,11 +23,13 @@ var __importStar = (this && this.__importStar) || function (mod) {
23
23
  return result;
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.SkipNativeBuildError = exports.BuildContext = exports.ArtifactType = exports.Builders = void 0;
26
+ exports.findAndUploadXcodeBuildLogsAsync = 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 xcodeBuildLogs_1 = require("./ios/xcodeBuildLogs");
34
+ Object.defineProperty(exports, "findAndUploadXcodeBuildLogsAsync", { enumerable: true, get: function () { return xcodeBuildLogs_1.findAndUploadXcodeBuildLogsAsync; } });
33
35
  //# sourceMappingURL=index.js.map
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","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"]}
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","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"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo/build-tools",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [
@@ -61,5 +61,5 @@
61
61
  "node": "18.13.0",
62
62
  "yarn": "1.22.19"
63
63
  },
64
- "gitHead": "c723c413a782eb74c0e5df79f7bf86ca6834d7a5"
64
+ "gitHead": "4f86863e35b2400ab9ef91141f28ef39e101daa6"
65
65
  }