Re: miniSphere 4.5.4
Reply #1519 –
New release. 4.5.4 has a small breaking change for Cell, the transpiler is now imported as:
import { transpile } from 'compiler';
The rename was done in anticipating of future TypeScript support. Calling TS a "transpiler" is stretching it since it's technically a different language, so I wanted a more generic name for the module than "transpile". Note also that there's no longer a default export - transpile() is now a named export.
This release also adds support for for...of iteration of over from() queries. Note that query results are enumerated as key/value pairs, NOT the raw values.