protoscript
Advanced tools
Changelog
v0.0.10
The following .protoscript.json
:
{
"root": "src",
};
Would be renamed to proto.config.mjs
and changed to the following:
/** @type {import('protoscript').Config} */
export default {
root: "src",
};
Use relative file path for determining path to compiler instead of hard coding from project root. This should interop better with more exotic package tooling and repo setup.
Fix: Improved map
detection. Previously field types suffixed with Entry
were incorrectly flagged as maps. This has been fixed.
Changelog
v0.0.8
Changelog
v0.0.7
Changelog
v0.0.6
Changelog
v0.0.20
Changelog
v0.0.19
const ron = User.initialize({ firstName: "Ron" });