quick fix for model loader (#446)

Signed-off-by: Andrey Platov <andrey@hardcoreeng.com>
This commit is contained in:
Andrey Platov 2021-12-01 10:28:26 +01:00 committed by GitHub
parent 8765cba7e6
commit fe585ec596
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,7 @@ import { existsSync } from 'fs'
import { mkdir, writeFile } from 'fs/promises' import { mkdir, writeFile } from 'fs/promises'
import { join } from 'path' import { join } from 'path'
const txes = builder.getTxes() const txes = JSON.parse(JSON.stringify(builder.getTxes())) as Tx[]
/** /**
* @public * @public