@enactprotocol/shared 1.2.6 → 1.2.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enactprotocol/shared",
3
- "version": "1.2.6",
3
+ "version": "1.2.7",
4
4
  "description": "Shared utilities and core functionality for Enact Protocol",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -11,8 +11,7 @@ import { parseTimeout } from "../utils/timeout.js";
11
11
  import fs from "fs/promises";
12
12
  import path from "path";
13
13
  import crypto from "crypto";
14
- import { spawn, spawnSync } from "child_process";
15
- import { exit } from "process";
14
+ import { spawnSync } from "child_process";
16
15
 
17
16
  export interface DaggerExecutionOptions {
18
17
  baseImage?: string; // Default container image
@@ -15,8 +15,6 @@ import { DaggerExecutionProvider } from "./DaggerExecutionProvider.js";
15
15
  import { resolveToolEnvironmentVariables } from "../utils/env-loader.js";
16
16
  import logger from "../exec/logger.js";
17
17
  import yaml from "yaml";
18
- import fs from "fs";
19
- import path from "path";
20
18
  import { CryptoUtils, KeyManager, SecurityConfigManager, SigningService } from "@enactprotocol/security";
21
19
  import { getFrontendUrl, getApiUrl } from "../utils/config";
22
20