@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 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
- return configFilePath
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)) {
@@ -398,5 +398,5 @@
398
398
  ]
399
399
  }
400
400
  },
401
- "version": "3.3.4-beta.2"
401
+ "version": "3.3.4-beta.3"
402
402
  }
package/package.json CHANGED
@@ -80,7 +80,7 @@
80
80
  "test": "mocha --forbid-only \"test/**/*.test.ts\"",
81
81
  "version": "oclif readme && git add README.md"
82
82
  },
83
- "version": "3.3.4-beta.2",
83
+ "version": "3.3.4-beta.3",
84
84
  "bugs": {
85
85
  "url": "https://discord.gg/gm3mJwcNw8"
86
86
  },