Get the marker file path. Returns: The marker file path.
(self)
| 14 | PLUGIN_NAME = "custom" |
| 15 | |
| 16 | def marker(self) -> pathlib.Path: |
| 17 | """Get the marker file path. |
| 18 | |
| 19 | Returns: |
| 20 | The marker file path. |
| 21 | """ |
| 22 | return ( |
| 23 | pathlib.Path(self.directory) |
| 24 | / f".reflex-{self.metadata.version}.pyi_generated" |
| 25 | ) |
| 26 | |
| 27 | def initialize(self, version: str, build_data: dict[str, Any]) -> None: |
| 28 | """Initialize the build hook. |