Skip to content

Commit

Permalink
Use server for concurrency of 1 when writing analysis output & readab…
Browse files Browse the repository at this point in the history
…ility factors (#54)

* rename and create some functions

* rename .js to .ts

* create files using uuid

* fix error introduced by trying to assign to var 2x

* export-res-path-for-consistency

* only run functions if the entry point is the specified module

* only aggregate if the module is main

* corrections re: file paths not resolving correctly

* do not shadow the scope of newFilePath;

* fix decompression script etc

* reverting back to 9abf7b1, then adding in terminal prompts for batch size and file size limit, as well as error catch for missing files

---------

Co-authored-by: Benny Rubanov <[email protected]>
  • Loading branch information
EllAchE and bennyrubanov authored Mar 24, 2024
1 parent 7898125 commit 4294a7d
Show file tree
Hide file tree
Showing 14 changed files with 1,889 additions and 1,142 deletions.
167 changes: 159 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,25 @@
"chess.js": "^1.0.0-beta.6",
"d3": "^7.8.5",
"node-zstandard": "^1.2.4",
"proper-lockfile": "^4.1.2"
"proper-lockfile": "^4.1.2",
"ts-node": "10.9.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.23.0",
"@types/d3": "^7.4.1",
"@types/jest": "^29.5.5",
"@types/lodash": "^4.14.199",
"@types/node": "18.11.18",
"@types/proper-lockfile": "4.1.4",
"@types/async": "3.2.24",
"jest": "^29.7.0",
"ts-jest": "^29.1.1"
},
"scripts": {
"build": "tsc --build",
"start": "tsc --build && node dist/src/index.js",
"test": "tsc --build && jest ./dist",
"scratch": "tsc --build && node dist/src/scratch.js"
"scratch": "tsc --build && node dist/src/scratch.js",
"run-zst-decompressor": "tsc --build && node dist/src/zst_decompressor.js"
}
}
Loading

0 comments on commit 4294a7d

Please sign in to comment.