You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gristlabs_grist-core/sandbox/install_tz.js

28 lines
783 B

/**
* This script converts the timezone data from moment-timezone to marshalled format, for fast
* loading by Python.
*/
const marshal = require('app/common/marshal');
const fse = require('fs-extra');
const moment = require('moment-timezone');
const DEST_FILE = 'sandbox/grist/tzdata.data';
function main() {
const zones = moment.tz.names().map((name) => {
const z = moment.tz.zone(name);
return marshal.wrap('TUPLE', [z.name, z.abbrs, z.offsets, z.untils]);
});
const marshaller = new marshal.Marshaller({version: 2});
marshaller.marshal(zones);
const contents = marshaller.dumpAsBuffer();
return fse.writeFile(DEST_FILE, contents);
}
if (require.main === module) {
main().catch((e) => {
console.log("ERROR", e.message);
process.exit(1);
});
}