datagrok-tools 4.14.8 → 4.14.9

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
- ## 4.14.6 (2025-06-06)
3
+ ## 4.14.9 (2025-06-06)
4
+
5
+ ### Features
6
+
7
+ * Grok Check added soft mode
8
+
9
+
10
+ ## 4.14.8 (2025-06-06)
4
11
 
5
12
  ### Features
6
13
 
@@ -25,7 +25,7 @@ const forbiddenNames = ['function', 'class', 'export'];
25
25
  const namesInFiles = new Map();
26
26
  function check(args) {
27
27
  const nOptions = Object.keys(args).length - 1;
28
- if (args['_'].length !== 1 || nOptions > 2 || nOptions > 0 && !args.r && !args.recursive) return false;
28
+ if (args['_'].length !== 1 || nOptions > 2) return false;
29
29
  const curDir = process.cwd();
30
30
  if (args.recursive) return runChecksRec(curDir, args.soft ?? false);else {
31
31
  if (!utils.isPackageDir(curDir)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "datagrok-tools",
3
- "version": "4.14.8",
3
+ "version": "4.14.9",
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": {