trajectories-sh 1.2.1 → 1.2.2

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/dist/cli.js CHANGED
@@ -81,7 +81,7 @@ program.command("upload <directory>").description("Upload a trajectory job direc
81
81
  Pushing ${directory} \u2192 ${chalk.cyan(slug)}
82
82
  `));
83
83
  try {
84
- const { uploadJob } = await import("./upload-WWZGW4NZ.js");
84
+ const { uploadJob } = await import("./upload-3SQPHPNI.js");
85
85
  const result = await uploadJob(directory, {
86
86
  slug,
87
87
  name: opts.name,
@@ -8,8 +8,8 @@ import { readdirSync, statSync, readFileSync } from "fs";
8
8
  import { join, relative } from "path";
9
9
  var SKIP = /* @__PURE__ */ new Set(["__pycache__", ".DS_Store", ".git", "node_modules"]);
10
10
  var MAX_FILE_SIZE = 50 * 1024 * 1024;
11
- var CONCURRENCY = 15;
12
- var BATCH_SIZE = 50;
11
+ var CONCURRENCY = 12;
12
+ var BATCH_SIZE = 30;
13
13
  function collectFiles(dir) {
14
14
  const files = [];
15
15
  function walk(current) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trajectories-sh",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "CLI for uploading trajectory jobs to trajectories.sh",
5
5
  "type": "module",
6
6
  "bin": {