npm package diff
Package: @forge/cli-shared
Versions: 6.7.0-next.10 - 6.7.0-next.11
File: package/out/config/config-file-section-reader.js
Index: package/out/config/config-file-section-reader.js
===================================================================
--- package/out/config/config-file-section-reader.js
+++ package/out/config/config-file-section-reader.js
@@ -21,11 +21,8 @@
else {
return 'missing';
}
}
- async readAppId() {
- return await this.configReader.readAppId();
- }
}
exports.ConfigFileSectionReader = ConfigFileSectionReader;
class ShapedConfigFileSectionReader {
configSectionReader;
@@ -38,11 +35,8 @@
}
readConfigSection() {
return this.configSectionReader.readConfigSection(this.key, this.schema);
}
- readAppId() {
- return this.configSectionReader.readAppId();
- }
}
const configFileReaderForSection = (key, schema, configReader) => {
return new ShapedConfigFileSectionReader(new ConfigFileSectionReader(configReader), key, schema);
};