datagrok-tools 4.13.54 → 4.13.56

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/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Datagrok-tools changelog
2
2
 
3
+ ## 4.13.56 (2025-01-06)
4
+
5
+ ### Features
6
+
7
+ * Worker to browser in test all
8
+
9
+ ## 4.13.55 (2025-01-06)
10
+
11
+ ### Features
12
+
13
+ * Removed unnecessary outputs in grok check
14
+
15
+
3
16
  ## 4.13.54 (2025-01-06)
4
17
 
5
18
  ### Features
@@ -247,7 +247,6 @@ function checkFuncSignatures(packagePath, files) {
247
247
  var message = '';
248
248
  if (inputs.length !== 0) {
249
249
  value = false;
250
- console.log(inputs);
251
250
  message += 'Viewer functions should take no arguments\n';
252
251
  }
253
252
  if (outputs.length > 1 || outputs.length === 1 && outputs[0].type !== 'viewer') {
@@ -633,7 +632,6 @@ function getFuncMetadata(script, fileExtention) {
633
632
  for (_iterator11.s(); !(_step11 = _iterator11.n()).done;) {
634
633
  var line = _step11.value;
635
634
  if (!line) continue;
636
- if (data.name === 'MCL' || data.name === 'MCLClustering') console.log(line);
637
635
  //@ts-ignore
638
636
  var match = line.match(utils.fileParamRegex[fileExtention]);
639
637
  if (match) {
@@ -665,7 +663,6 @@ function getFuncMetadata(script, fileExtention) {
665
663
  if (isHeader) {
666
664
  var nm = line.match(utils.nameRegex);
667
665
  if (nm && !match) {
668
- if (data.name === 'MCL' || data.name === 'MCLClustering') console.log(data);
669
666
  data.name = data.name || nm[1];
670
667
  funcData.push(data);
671
668
  data = {
@@ -348,7 +348,7 @@ function _addBrowserColumn() {
348
348
  skipEmptyLines: true,
349
349
  complete: function complete(results) {
350
350
  var dataWithDefaultColumn = results.data.map(function (row) {
351
- row["worker"] = workerNumber;
351
+ row["browser"] = workerNumber;
352
352
  return row;
353
353
  });
354
354
  result = Papa.unparse(dataWithDefaultColumn, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "datagrok-tools",
3
- "version": "4.13.54",
3
+ "version": "4.13.56",
4
4
  "description": "Utility to upload and publish packages to Datagrok",
5
5
  "homepage": "https://github.com/datagrok-ai/public/tree/master/tools#readme",
6
6
  "dependencies": {