spfn 0.2.0-beta.8 → 0.2.0-beta.9
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/index.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -755,7 +755,7 @@ var init_deployment_config = __esm({
|
|
|
755
755
|
|
|
756
756
|
// src/utils/version.ts
|
|
757
757
|
function getCliVersion() {
|
|
758
|
-
return "0.2.0-beta.
|
|
758
|
+
return "0.2.0-beta.9";
|
|
759
759
|
}
|
|
760
760
|
function getTagFromVersion(version) {
|
|
761
761
|
const match = version.match(/-([a-z]+)\./i);
|
|
@@ -1546,7 +1546,7 @@ async function buildProject(options) {
|
|
|
1546
1546
|
const orchestrator = new CodegenOrchestrator({
|
|
1547
1547
|
generators,
|
|
1548
1548
|
cwd,
|
|
1549
|
-
debug:
|
|
1549
|
+
debug: true
|
|
1550
1550
|
});
|
|
1551
1551
|
await orchestrator.generateAll();
|
|
1552
1552
|
spinner.succeed("API client generated");
|
|
@@ -1856,7 +1856,7 @@ async function runGenerators() {
|
|
|
1856
1856
|
const orchestrator = new CodegenOrchestrator({
|
|
1857
1857
|
generators,
|
|
1858
1858
|
cwd,
|
|
1859
|
-
debug:
|
|
1859
|
+
debug: true
|
|
1860
1860
|
});
|
|
1861
1861
|
await orchestrator.generateAll();
|
|
1862
1862
|
console.log("\n" + chalk7.green.bold("\u2713 Code generation completed"));
|