datagrok-tools 4.14.13 → 4.14.14

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,11 +1,11 @@
1
1
  # Datagrok-tools changelog
2
2
 
3
- ## 4.14.13 (2025-06-16)
3
+ ## 4.14.14 (2025-06-16)
4
4
 
5
5
  ### Features
6
6
 
7
7
  * Grok Link added ability to link packages from root directory
8
- * Grok Link added without-common-dir
8
+ * Grok Link added repo-only option
9
9
 
10
10
  ## 4.14.10 (2025-06-08)
11
11
 
@@ -175,13 +175,13 @@ Options:
175
175
  --link-package Link the packages to local utils
176
176
  --record Records the test execution process in mp4 format
177
177
  --verbose Prints detailed information about passed and skipped tests in the console
178
- --core Runs packages & core tests (applicable for DevTools packages only)
178
+ --core Runs packages & core tests (applicable for DevTools packages only)
179
179
  --benchmark Runs tests in benchmark mode
180
180
  --stress-test Runs shuffled stress-test only
181
181
  --order Specify order for tests invocation
182
182
  --tags Filter tests by tag name for run
183
183
  --testRepeat Set amount of tests repeats
184
- --browsers-count Set amount of browsers for tests run
184
+ --browsers-count Set amount of browsers for tests run
185
185
 
186
186
  Run tests of all or specified packages
187
187
 
@@ -191,14 +191,16 @@ https://datagrok.ai/help/develop/how-to/test-packages#local-testing
191
191
  const HELP_LINK = `
192
192
  Usage: grok link
193
193
 
194
- Link \`datagrok-api\`, all necessary libraries and packages for local development by \`npm link\` command
194
+ Links \`datagrok-api\`, all necessary libraries and packages for local development.
195
+ Uses \`npm link\` unless the --path option specified.
196
+ By default, it links packages from the parent directory of the repository's root.
195
197
 
196
198
  Options:
197
- --dev Links also dev dependencies
198
- --path Instead of npm linking sets dependecies in package.json to local
199
- --without-common-dir Links packages only from the current repository
200
- --unlink Unlinks packages and sets last versions instead of local path in package.json dependencies
201
- --verbose Prints detailed information about linked packages
199
+ --dev Links also dev dependencies
200
+ --path Instead of npm link, sets dependencies in package.json to local
201
+ --repo-only Links packages only from the current repository
202
+ --unlink Unlinks packages and sets last versions instead of local path in package.json dependencies
203
+ --verbose Prints detailed information about linked packages
202
204
  `;
203
205
 
204
206
  // const HELP_MIGRATE = `
@@ -39,7 +39,7 @@ async function link(args) {
39
39
  devMode = args.dev ?? false;
40
40
  pathMode = args.path ?? false;
41
41
  unlink = args.unlink ?? false;
42
- let collectedPackages = collectAvaliablePackages(args['without-common-dir']);
42
+ let collectedPackages = collectAvaliablePackages(args['repo-only']);
43
43
  packagesInRepo = collectedPackages.packagesInRepo;
44
44
  packagesOutOfRepo = collectedPackages.packagesOutOfRepo;
45
45
  localPackageDependencies = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "datagrok-tools",
3
- "version": "4.14.13",
3
+ "version": "4.14.14",
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": {