aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_utils/mod.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove unneeded testsLibravatar Titus Wormer2022-11-251-6/+0
|
* Add internals to compile JSX away (wip)Libravatar Titus Wormer2022-10-121-0/+1
|
* Refactor test utilities to improve namesLibravatar Titus Wormer2022-10-111-5/+4
|
* Add support for proper positional info in swc treeLibravatar Titus Wormer2022-10-111-0/+2
| | | | | | | | | | * Fix some positional info in SWC error messages * Add positional info in `to_document` on duplicate layouts * Add support for `path` on `Program` (`to_swc`, `to_document`, `jsx_rewrite`), for the path of a file on disk * Add support for `development` to `jsx-rewrite`, which when defined will embed info on where tags were written into the runtime code when they are not passed * Refactor to move some utilities to `micromark_swc_utils.rs`, `swc_utils.rs`
* Add support for rewriting JSXLibravatar Titus Wormer2022-10-051-0/+1
|
* Add support for creating a component, using layoutLibravatar Titus Wormer2022-10-031-0/+1
|
* Add support for turning hast into swcLibravatar Titus Wormer2022-09-301-0/+1
|
* Add support for turning mdast to hastLibravatar Titus Wormer2022-09-281-245/+3
|
* Add support for parsing MDX ESM, expressionsLibravatar Titus Wormer2022-09-191-0/+245
This commit adds support for hooks that lets a user integrate another parser with `micromark-rs`, to parse ESM and expressions according to a particular grammar (such as a programming language, typically JavaScript). For an example integrating with SWC, see `tests/test_utils/mod.rs`. The integration occurs with two functions passed in `options`: `mdx_expression_parse` and `mdx_esm_parse`. The can signal back to micromark when they are successful, whether there is an error at the end (in which case micromark will try to parse more), or whether there is a syntax error (in which case micromark will crash).