sisyphi 1.1.24 → 1.1.25

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/dist/daemon.js CHANGED
@@ -31,6 +31,7 @@ __export(paths_exports, {
31
31
  deployCredsPath: () => deployCredsPath,
32
32
  deployDir: () => deployDir,
33
33
  deployProviderDir: () => deployProviderDir,
34
+ deployRuntimePath: () => deployRuntimePath,
34
35
  deployStateBackupPath: () => deployStateBackupPath,
35
36
  deployStatePath: () => deployStatePath,
36
37
  deployTailscaleEnvPath: () => deployTailscaleEnvPath,
@@ -219,6 +220,9 @@ function deployStatePath(provider) {
219
220
  function deployStateBackupPath(provider) {
220
221
  return join(deployProviderDir(provider), "terraform.tfstate.bak");
221
222
  }
223
+ function deployRuntimePath(provider) {
224
+ return join(deployProviderDir(provider), "runtime.json");
225
+ }
222
226
  function deployCredsPath(provider) {
223
227
  return join(deployDir(), `${provider}.env`);
224
228
  }