datagrok-tools 4.13.30 → 4.13.31

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,6 +1,13 @@
1
1
  # Datagrok-tools changelog
2
2
 
3
3
 
4
+ ## 4.13.31 (2024-10-15)
5
+
6
+ ### Features
7
+
8
+ * Grok test without repository fixes
9
+
10
+
4
11
  ## 4.13.30 (2024-10-11)
5
12
 
6
13
  ### Features
@@ -44,7 +44,8 @@ function _test() {
44
44
  }));
45
45
  isArgsValid(args);
46
46
  utils.setHost(args.host, config);
47
- packageJsonData = JSON.parse(_fs["default"].readFileSync(_path["default"].join(curDir, 'package.json'), {
47
+ packageJsonData = undefined;
48
+ if (!args["package"]) packageJsonData = JSON.parse(_fs["default"].readFileSync(_path["default"].join(curDir, 'package.json'), {
48
49
  encoding: 'utf-8'
49
50
  }));
50
51
  packageName = args["package"] ? utils.kebabToCamelCase(args["package"]) : utils.kebabToCamelCase(utils.removeScope(packageJsonData.name));
@@ -59,20 +60,20 @@ function _test() {
59
60
  if (args.platform && packageName !== 'ApiTests') color.warn('--platform flag can only be used in the ApiTests package');
60
61
  if (args.core && packageName !== 'DevTools') color.warn('--core flag can only be used in the DevTools package');
61
62
  if (args["package"]) {
62
- _context2.next = 15;
63
+ _context2.next = 16;
63
64
  break;
64
65
  }
65
- _context2.next = 15;
66
+ _context2.next = 16;
66
67
  return testUtils.loadPackages(packagesDir, packageName, args.host, args['skip-publish'], args['skip-build'], args.link);
67
- case 15:
68
+ case 16:
68
69
  process.env.TARGET_PACKAGE = packageName;
69
- _context2.next = 18;
70
+ _context2.next = 19;
70
71
  return runTesting(args, categoryToCheck, testToCheck);
71
- case 18:
72
+ case 19:
72
73
  failed = _context2.sent;
73
74
  if (failed) testUtils.exitWithCode(1);else testUtils.exitWithCode(0);
74
75
  return _context2.abrupt("return", true);
75
- case 21:
76
+ case 22:
76
77
  case "end":
77
78
  return _context2.stop();
78
79
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "datagrok-tools",
3
- "version": "4.13.30",
3
+ "version": "4.13.31",
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": {