npm package diff
Package: @forge/cli
Versions: 10.4.1 - 10.5.0-next.1-experimental-264fa0f
File: package/out/service/cached-config-service.js
Index: package/out/service/cached-config-service.js
===================================================================
--- package/out/service/cached-config-service.js
+++ package/out/service/cached-config-service.js
@@ -2,9 +2,8 @@
Object.defineProperty(exports, "__esModule", { value: true });
exports.CachedConfigService = void 0;
const ANALYTICS_PREFERENCES_KEY = 'analytics-preferences';
const DEFAULT_ENVIRONMENT_KEY = 'default-environment';
-const NGROK_CONFIG_PATH_KEY = 'ngrok-config-path';
class CachedConfigService {
cachedConf;
constructor(cachedConf) {
this.cachedConf = cachedConf;
@@ -29,12 +28,6 @@
const defaultEnvironments = this.getDefaultEnvironments();
defaultEnvironments[appId] = preference;
this.cachedConf.set(DEFAULT_ENVIRONMENT_KEY, defaultEnvironments);
}
- getNgrokConfigPath() {
- return this.cachedConf.get(NGROK_CONFIG_PATH_KEY);
- }
- setNgrokConfigPath(preference) {
- this.cachedConf.set(NGROK_CONFIG_PATH_KEY, preference);
- }
}
exports.CachedConfigService = CachedConfigService;