Ari Perkkiö
Ari Perkkiö
I would recommend to create re-usable Astro component and use that in the lessons that are hiding preview and terminal. Something like: ```yaml --- type: lesson ... --- import NarrowLayout...
As solution, let's add support for overriding the elements that render markdown here: https://github.com/stackblitz/tutorialkit/blob/afbc81f241ea471eaf334514ad4ac2fa96bc3662/packages/astro/src/default/components/TutorialContent.astro#L15-L17 This should be called `TutorialContent` that can be overriden with https://tutorialkit.dev/guides/overriding-components/. Then users can create their...
Seeing similar issues in Vitest Ecosystem CI: https://github.com/vitest-dev/vitest-ecosystem-ci/actions/runs/15104907077/job/42451860521 with https://github.com/stackblitz/webcontainer-test. Timeouts start to happen with `3.1.2` and later versions. `3.1.1` works all the time. Need to check commit-by-commit to bisect...
@nstepien do you have any `vi.useFakeTimers()` or `vi.mock()` calls that are not restored in the same test file? Try adding additional restores for those and see if it fixes the...
That helped in the case of https://github.com/vitest-dev/vitest/issues/7871#issuecomment-2889689649 - the new parallelization improvements revealed a bug in the test cases. So now we no longer have a reproduction for this specific...
This outdated PR contained changes to files that no longer exist, so I created new PR that finalizes the changes: - #7529
As far as I know, Astro's `getContent` returns the data that's on file system only. Is there a way for us to define some virtual collection where we could add...
Can you try upgrading Yarn, or trying with `npm` or other package managers? - https://github.com/stackblitz/tutorialkit/issues/404#issuecomment-2483081248
I'm unable to reproduce that on `npm` `v10.9.3`. Make sure you re-generate your `node_modules` when switcing away from `yarn`. ```sh $ npm --version 10.9.3 $ rm -rf node_modules/ package-lock.json yarn.lock...
Vue compiler is outputting source maps which are off by one line. This is similar as https://github.com/vitest-dev/vitest/discussions/2874 and https://github.com/vuejs/vue-loader/issues/1778. Here is what Vue is generating from `BottomButtonNav.vue`: ```js const _sfc_main...