sim 2.1.8-dev.101.1 → 2.1.8-dev.95.1

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.
@@ -54,11 +54,13 @@ export declare function readArgumentSource(raw: string, flagName: string): Promi
54
54
  from: string;
55
55
  }>;
56
56
  /**
57
- * Reads a primitive list from argv or a newline-delimited file. A `manifest`
58
- * list drops blank and `#` comment lines read from a file, so a requirements
59
- * file can be passed as it is on disk.
57
+ * Reads a primitive list from argv or a newline-delimited file.
58
+ *
59
+ * Exported for the one augmentation that has to read a list before the
60
+ * generated path does (`workflows runs get --select-output`), so a `@-` or
61
+ * `@path` source is read exactly once, by whichever of the two sees it first.
60
62
  */
61
- export declare function readListValues(raw: unknown, flagName: string, manifest?: boolean): Promise<string[]>;
63
+ export declare function readListValues(raw: unknown, flagName: string): Promise<string[]>;
62
64
  /**
63
65
  * Rewrites one folder path into the API's canonical wire form.
64
66
  *
package/dist/runtime.d.ts CHANGED
@@ -1,5 +1,4 @@
1
1
  export { Command } from 'commander';
2
- export { runEmbeddedCli } from './embed';
3
2
  export { SimApiError } from './http/client';
4
3
  export { buildProgram } from './program';
5
4
  export { runTerminalCli } from './terminal';