datagrok-tools 4.14.14 → 4.14.15

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.
@@ -68,15 +68,12 @@ function generateScriptWrappers() {
68
68
  path: dir,
69
69
  ignoreFiles: ['.npmignore', '.gitignore']
70
70
  });
71
- console.log(files);
72
71
  for (const file of files) {
73
72
  let extension;
74
73
  if (!utils.scriptExtensions.some(ext => (extension = ext, file.endsWith(ext)))) continue;
75
74
  const filepath = _path.default.join(dir, file);
76
75
  const script = _fs.default.readFileSync(filepath, 'utf8');
77
76
  if (!script) continue;
78
- console.log(filepath);
79
- console.log(script);
80
77
  const name = utils.getScriptName(script, utils.commentMap[extension]);
81
78
  if (!name) continue;
82
79
  const description = utils.getScriptDescription(script);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "datagrok-tools",
3
- "version": "4.14.14",
3
+ "version": "4.14.15",
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": {