mirror of
https://github.com/zkldi/Tachi.git
synced 2026-09-27 17:38:11 +03:00
This is a long one. So, `instanceof` in Typescript is incredibly flimsy. There's a documented bug with what happens when you extend built-in classes, such as Error or Array. You can read more about it here: https://github.com/Microsoft/TypeScript/wiki/FAQ#why-doesnt-extending-built-ins-like-error-array-and-map-work However, this normally works fine. A previous commit moved some schemas from server/ to common/, our gameSpecific UGPT settings schemas. This caused them to break in an interesting way. For any schema recursive with a depth greater than 1, all errors would be ignored. Why on earth was this happening? Well Prudence passes errors up the stack with a "return Err" -> "if ret instanceof Err: return Err" kind of approach. This normally works fine. The real kicker here is that because server/ and common/ were on 0.9.7 and 0.9.8 respectively, the "Err" instance in question would actually be erased when ran at runtime. The "if ret instance of Err" would fail, because the Err would be from 0.9.7, not 0.9.8. This subtle difference in file results in catastrophic damage. In short. InstanceOf is a footgun. I hate it. Lets never do it again. Thanks.
32 lines
774 B
JSON
32 lines
774 B
JSON
{
|
|
"name": "tachi-database-seeds-scripts",
|
|
"version": "0.1.0",
|
|
"description": "Scripts for dealing with tachi-database-seeds.",
|
|
"main": "",
|
|
"scripts": {
|
|
"test": "./run-tests.sh",
|
|
"sort": "node deterministic-collection-sort.js"
|
|
},
|
|
"author": "zkldi",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@types/lodash.get": "^4.4.7",
|
|
"better-sqlite3": "^7.5.0",
|
|
"chalk": "4",
|
|
"commander": "^8.2.0",
|
|
"csv-parse": "^5.0.3",
|
|
"deepmerge": "^4.2.2",
|
|
"encoding-japanese": "^1.0.30",
|
|
"fast-json-stable-hash": "^1.0.3",
|
|
"fast-xml-parser": "^4.0.2",
|
|
"glob": "^7.2.0",
|
|
"html-entities": "^2.3.2",
|
|
"iconv-lite": "^0.6.3",
|
|
"lodash.get": "^4.4.2",
|
|
"mei-logger": "^1.0.1",
|
|
"monk": "^7.3.4",
|
|
"node-fetch": "2.6.7",
|
|
"prudence": "0.9.8",
|
|
"xml2js": "^0.4.23"
|
|
}
|
|
} |