I was wondering how to quickly run or debug a single .jsx file since I only see large unit tests and build scripts for the plugin.
In order to run it with a debugger, I created this snippet: https://github.com/obask/dom-expressions/commit/1626f8299fd0c860c3c5ffed940de99747f88391
Do you think this is a good approach or there is a simpler way to iterate on the project?
This script allows to transform a small file and run it with a debugger:
It also outputs a transformed version of the debug/in.jsx file:
PS: How contributors learn Solid's internals in general? It would be nice to add this information to the CONTRIBUTING.md and INSTALL.md files(eventually) as a resource for developers who are interested in learning more about Solid's internals.
Thank you!
I was wondering how to quickly run or debug a single
.jsx
file since I only see large unit tests and build scripts for the plugin. In order to run it with a debugger, I created this snippet: https://github.com/obask/dom-expressions/commit/1626f8299fd0c860c3c5ffed940de99747f88391 Do you think this is a good approach or there is a simpler way to iterate on the project?This script allows to transform a small file and run it with a debugger:
It also outputs a transformed version of the
debug/in.jsx
file:PS: How contributors learn Solid's internals in general? It would be nice to add this information to the
CONTRIBUTING.md
andINSTALL.md
files(eventually) as a resource for developers who are interested in learning more about Solid's internals. Thank you!