mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 10:15:43 +03:00
47fd11050f
and add (working) type check for release mode js-sdk types
17 lines
479 B
JavaScript
Executable file
17 lines
479 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
|
|
const fsProm = require('fs/promises');
|
|
|
|
const PKGJSON = 'node_modules/matrix-js-sdk/package.json';
|
|
|
|
async function main() {
|
|
const pkgJson = JSON.parse(await fsProm.readFile(PKGJSON, 'utf8'));
|
|
for (const field of ['main', 'typings']) {
|
|
if (pkgJson["matrix_lib_"+field] !== undefined) {
|
|
pkgJson[field] = pkgJson["matrix_lib_"+field];
|
|
}
|
|
}
|
|
await fsProm.writeFile(PKGJSON, JSON.stringify(pkgJson, null, 2));
|
|
}
|
|
|
|
main();
|