/// import * as fs from 'fs'; const deploy = require("./editor/deploy") export function deployCoreAsync(resp: pxtc.CompileResult) { return deploy.deployCoreAsync(resp, process.env["PXT_SERIAL"] ? false : true) .then(() => { fs.writeFileSync("built/full-" + pxtc.BINARY_UF2, resp.outfiles[pxtc.BINARY_UF2], { encoding: "base64" }) }) }