datagrok-tools 4.13.54 → 4.13.55
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 +7 -0
- package/bin/commands/check.js +0 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/bin/commands/check.js
CHANGED
|
@@ -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 = {
|
package/package.json
CHANGED