@devicecloud.dev/dcd 3.3.4-beta.2 → 3.3.4-beta.3
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/plan.js +6 -1
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/dist/plan.js
CHANGED
|
@@ -42,10 +42,15 @@ function filterFlowFiles(unfilteredFlowFiles, excludeFlows) {
|
|
|
42
42
|
return unfilteredFlowFiles;
|
|
43
43
|
}
|
|
44
44
|
function getWorkspaceConfig(input, unfilteredFlowFiles) {
|
|
45
|
+
console.log('[getWorkspaceConfig] Input path:', input);
|
|
46
|
+
console.log('[getWorkspaceConfig] Unfiltered flow files:', unfilteredFlowFiles);
|
|
45
47
|
const configFilePath = unfilteredFlowFiles.find((file) => file === input + 'config.yaml' || file === input + 'config.yml');
|
|
46
|
-
|
|
48
|
+
console.log('[getWorkspaceConfig] Found config file path:', configFilePath);
|
|
49
|
+
const config = configFilePath
|
|
47
50
|
? (0, planMethods_1.readYamlFileAsJson)(configFilePath)
|
|
48
51
|
: {};
|
|
52
|
+
console.log('[getWorkspaceConfig] Parsed config:', config);
|
|
53
|
+
return config;
|
|
49
54
|
}
|
|
50
55
|
async function plan(input, includeTags, excludeTags, excludeFlows) {
|
|
51
56
|
if (!fs.existsSync(input)) {
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED