ph-cmd 6.0.0-dev.42 → 6.0.0-dev.43
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/build/cli.js +276 -260
- package/build/cli.old.js +12 -1
- package/build/generate-commands-docs.js +277 -261
- package/package.json +3 -3
package/build/cli.old.js
CHANGED
|
@@ -677808,6 +677808,7 @@ import manifestJson from "./powerhouse.manifest.json" with { type: "json" };
|
|
|
677808
677808
|
export { documentModels } from "./document-models/document-models.js";
|
|
677809
677809
|
export { upgradeManifests } from "./document-models/upgrade-manifests.js";
|
|
677810
677810
|
export { editors } from "./editors/editors.js";
|
|
677811
|
+
export { processorFactory } from "./processors/index.ts";
|
|
677811
677812
|
export const manifest: Manifest = manifestJson;
|
|
677812
677813
|
`.raw;
|
|
677813
677814
|
// ../../packages/codegen/dist/src/templates/boilerplate/LICENSE.js
|
|
@@ -679288,6 +679289,15 @@ export function FolderTree() {
|
|
|
679288
679289
|
);
|
|
679289
679290
|
}
|
|
679290
679291
|
`.raw;
|
|
679292
|
+
// ../../packages/codegen/dist/src/templates/processors/index.js
|
|
679293
|
+
var processorsIndexTemplate = ts`
|
|
679294
|
+
/**
|
|
679295
|
+
* Processor exports
|
|
679296
|
+
* This file is auto-generated and updated by codegen
|
|
679297
|
+
*/
|
|
679298
|
+
|
|
679299
|
+
export { processorFactory } from "./factory.js";
|
|
679300
|
+
`.raw;
|
|
679291
679301
|
// ../../packages/codegen/dist/src/file-builders/boilerplate/package.json.js
|
|
679292
679302
|
async function buildBoilerplatePackageJson(args) {
|
|
679293
679303
|
const { name, tag: tag2, version } = args;
|
|
@@ -705549,6 +705559,7 @@ async function writeModuleFiles() {
|
|
|
705549
705559
|
await writeFileEnsuringDir("editors/index.ts", editorsIndexTemplate);
|
|
705550
705560
|
await writeFileEnsuringDir("processors/index.ts", boilerplateProcessorsIndexTemplate);
|
|
705551
705561
|
await writeFileEnsuringDir("subgraphs/index.ts", subgraphsIndexTemplate);
|
|
705562
|
+
await writeFileEnsuringDir("processors/index.ts", processorsIndexTemplate);
|
|
705552
705563
|
}
|
|
705553
705564
|
async function writeAiConfigFiles() {
|
|
705554
705565
|
await writeFileEnsuringDir("CLAUDE.md", agentsTemplate);
|
|
@@ -706665,7 +706676,7 @@ import fs13 from "node:fs";
|
|
|
706665
706676
|
import path21 from "node:path";
|
|
706666
706677
|
var customVersionHandler = async () => {
|
|
706667
706678
|
const projectInfo = await getProjectInfo(undefined, false);
|
|
706668
|
-
const version2 = "6.0.0-dev.
|
|
706679
|
+
const version2 = "6.0.0-dev.42";
|
|
706669
706680
|
console.log("PH CMD version: ", version2);
|
|
706670
706681
|
if (projectInfo.available) {
|
|
706671
706682
|
const packageManager = getPackageManagerFromLockfile(projectInfo.path);
|