datagrok-tools 4.13.62 → 4.13.63

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,11 @@
1
1
  # Datagrok-tools changelog
2
2
 
3
+ ## 4.13.63 (2025-02-27)
4
+
5
+ ### Features
6
+
7
+ * Grok Link minor fixes
8
+
3
9
  ## 4.13.62 (2025-02-27)
4
10
 
5
11
  ### Features
@@ -60,6 +60,7 @@ function _link() {
60
60
  function collectPackagesData() {
61
61
  var packagePath = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : curDir;
62
62
  var packageJsonPath = _path["default"].join(packagePath, 'package.json');
63
+ if (!_fs["default"].existsSync(packageJsonPath)) return [];
63
64
  var json = JSON.parse(_fs["default"].readFileSync(packageJsonPath, 'utf-8'));
64
65
  var result = [];
65
66
  result = result.concat(collectPacakgeDataFromJsonObject(json.dependencies));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "datagrok-tools",
3
- "version": "4.13.62",
3
+ "version": "4.13.63",
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": {