@intuned/runtime-dev 1.0.6-cli-auth.0.0.7-test → 1.0.6-cli-auth.0.0.9-test
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.
|
@@ -148,6 +148,7 @@ async function storeAuthSessionInstance(authSessionInstance, customName, authSes
|
|
|
148
148
|
await fs.ensureDir(authSessionsDirectoryPath);
|
|
149
149
|
const authSessionInstanceId = customName ?? `auth-session-${Date.now()}`;
|
|
150
150
|
const authSessionInstancePath = _path.default.join(authSessionsDirectoryPath, authSessionInstanceId);
|
|
151
|
+
await fs.ensureDir(authSessionInstancePath);
|
|
151
152
|
const authSessionInstanceStoragePath = _path.default.join(authSessionInstancePath, `auth-session.json`);
|
|
152
153
|
await fs.writeJSON(authSessionInstanceStoragePath, authSessionInstance, {
|
|
153
154
|
spaces: 2
|