@hubspot/local-dev-lib 0.7.6-experimental.1 → 0.7.6-experimental.2
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/constants/config.d.ts +4 -0
- package/constants/config.js +4 -0
- package/package.json +1 -1
package/constants/config.d.ts
CHANGED
|
@@ -106,3 +106,7 @@ export declare const HS_FOLDER = ".hs";
|
|
|
106
106
|
export declare const HS_SETTINGS_FILENAME = "settings.json";
|
|
107
107
|
export declare const HS_README_FILENAME = "README.txt";
|
|
108
108
|
export declare const DEFAULT_HS_SETTINGS_PATH = ".hs/settings.json";
|
|
109
|
+
export declare const EMPTY_HS_SETTINGS_FILE: {
|
|
110
|
+
localDefaultAccount: undefined;
|
|
111
|
+
accounts: never[];
|
|
112
|
+
};
|
package/constants/config.js
CHANGED
|
@@ -109,3 +109,7 @@ export const HS_FOLDER = '.hs';
|
|
|
109
109
|
export const HS_SETTINGS_FILENAME = 'settings.json';
|
|
110
110
|
export const HS_README_FILENAME = 'README.txt';
|
|
111
111
|
export const DEFAULT_HS_SETTINGS_PATH = `${HS_FOLDER}/${HS_SETTINGS_FILENAME}`;
|
|
112
|
+
export const EMPTY_HS_SETTINGS_FILE = {
|
|
113
|
+
localDefaultAccount: undefined,
|
|
114
|
+
accounts: [],
|
|
115
|
+
};
|
package/package.json
CHANGED