Lars Kappert
Lars Kappert
Oh no: > Devbox not found > It's likely that the Devbox you're trying to access doesn't exist or you don't have the required permissions to access it.
I think what you're after is to exclude `test_util` from the production project file set: ```json { "$schema": "https://unpkg.com/knip@5/schema.json", "entry": ["index.ts!", "test.ts"], "project": ["*.ts!", "!test_util.ts!"] } ``` The general case...
Let's keep only #706 open for discussion.
Custom resolvers, AST visitors, etc are on the back of my mind. At this point I just don't fancy opening up more API surface area. However, for the time being,...
Going to close this one, it's just too custom and workarounds are available (ignore, custom reporter).
Consider adding a hook (https://github.com/release-it/release-it?tab=readme-ov-file#hooks) and add the `git pull` command to the process.
Maybe there's another hook available that does it when you need it? E.g. there are `git:after:bump` and `git:before:release`
It was a conscious choice to keep things simple. Assets and images should be in the same or sub folders.
The challenge was that reveal-md is basically a simple http server that serves static assets and also allows to export it all as a stand-alone HTML website. Feel free to...
In the end it's just putting in the work to achieve something. I once had this idea to build something that allows to write Markdown and spin up a Reveal.js...