npm package diff
Package: @forge/cli-shared
Versions: 6.6.2-next.5 - 6.6.2-next.6
File: package/out/config/config-section.js
Index: package/out/config/config-section.js
===================================================================
--- package/out/config/config-section.js
+++ package/out/config/config-section.js
@@ -23,8 +23,14 @@
else {
return configValue;
}
}
+ async readConfigAppIdOrThrow() {
+ const appId = await this.configSectionReader.readAppId();
+ return {
+ id: appId.toString()
+ };
+ }
}
exports.AssertiveConfigSectionReader = AssertiveConfigSectionReader;
const assertive = (configSectionReader) => new AssertiveConfigSectionReader(configSectionReader);
exports.assertive = assertive;