Skip to content

Commit 4294a7d

Browse files
Use server for concurrency of 1 when writing analysis output & readability 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 <106097466+bennyrubanov@users.noreply.github.com>
1 parent 7898125 commit 4294a7d

14 files changed

+1889
-1142
lines changed

package-lock.json

Lines changed: 159 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,25 @@
88
"chess.js": "^1.0.0-beta.6",
99
"d3": "^7.8.5",
1010
"node-zstandard": "^1.2.4",
11-
"proper-lockfile": "^4.1.2"
11+
"proper-lockfile": "^4.1.2",
12+
"ts-node": "10.9.2"
1213
},
1314
"devDependencies": {
1415
"@babel/preset-typescript": "^7.23.0",
1516
"@types/d3": "^7.4.1",
1617
"@types/jest": "^29.5.5",
1718
"@types/lodash": "^4.14.199",
1819
"@types/node": "18.11.18",
20+
"@types/proper-lockfile": "4.1.4",
21+
"@types/async": "3.2.24",
1922
"jest": "^29.7.0",
2023
"ts-jest": "^29.1.1"
2124
},
2225
"scripts": {
2326
"build": "tsc --build",
2427
"start": "tsc --build && node dist/src/index.js",
2528
"test": "tsc --build && jest ./dist",
26-
"scratch": "tsc --build && node dist/src/scratch.js"
29+
"scratch": "tsc --build && node dist/src/scratch.js",
30+
"run-zst-decompressor": "tsc --build && node dist/src/zst_decompressor.js"
2731
}
2832
}

0 commit comments

Comments
 (0)