@kestra-io/ui-libs 0.0.70 → 0.0.71

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kestra-io/ui-libs",
3
- "version": "0.0.70",
3
+ "version": "0.0.71",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "src",
@@ -182,9 +182,7 @@ export default class YamlUtils {
182
182
  }
183
183
 
184
184
  static getTaskType(source, position) {
185
- console.log("entering getTaskType...")
186
185
  const types = this.extractAllTypes(source)
187
- console.log("types", types)
188
186
  const lineCounter = new LineCounter();
189
187
  yaml.parseDocument(source, {lineCounter});
190
188
  const cursorIndex = lineCounter.lineStarts[position.lineNumber - 1] + position.column;