@microtronics/studio-cli 1.3.0-alpha.3 → 1.3.0-alpha.4
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/main.js +62 -49
- package/dist/studio-cli.d.ts +13 -0
- package/out/api.js +59 -46
- package/out/studio-cli.d.ts +13 -0
- package/package.json +1 -1
package/out/studio-cli.d.ts
CHANGED
|
@@ -2620,6 +2620,12 @@ export declare namespace DLO {
|
|
|
2620
2620
|
/** `// @it <slug> "<title>"` - the marker the pre-compiler leaves on a rewritten line. */
|
|
2621
2621
|
export const itMarkerComment: typeof ItNaming.itMarkerComment;
|
|
2622
2622
|
export const IT_MARKER_RE: RegExp;
|
|
2623
|
+
/**
|
|
2624
|
+
* Scaffolds a new `*.spec.dlo` (STUDIO-695): `<name>.spec.dlo` next to the project's dlo main
|
|
2625
|
+
* file, or under `dlo/` when no `dlo.mainFile` is set. Refuses to overwrite an existing file.
|
|
2626
|
+
* Returns the path written, relative to `cwd`.
|
|
2627
|
+
*/
|
|
2628
|
+
export const scaffoldSpec: typeof scaffoldSpec;
|
|
2623
2629
|
/**
|
|
2624
2630
|
* The DLO Compiler
|
|
2625
2631
|
*/
|
|
@@ -5947,6 +5953,13 @@ export declare namespace Registry {
|
|
|
5947
5953
|
} | {};
|
|
5948
5954
|
}
|
|
5949
5955
|
|
|
5956
|
+
/**
|
|
5957
|
+
* Scaffolds a new `*.spec.dlo` (STUDIO-695): `<name>.spec.dlo` next to the project's dlo main
|
|
5958
|
+
* file, or under `dlo/` when no `dlo.mainFile` is set. Refuses to overwrite an existing file.
|
|
5959
|
+
* Returns the path written, relative to `cwd`.
|
|
5960
|
+
*/
|
|
5961
|
+
declare function scaffoldSpec(cwd: URI, fs: LocalFS, manifest: Manifest.Manifest, name: string): Promise<string>;
|
|
5962
|
+
|
|
5950
5963
|
/** `GET /dev/status`'s `poll` section. */
|
|
5951
5964
|
export declare interface StampPollerStatus {
|
|
5952
5965
|
intervalMs: number;
|