Mike

Results 65 comments of Mike

Hey Cenk, thank you so much for your feedback. I experimented with that a bit in my project's pull request (see reference above this comment). I left instructions in the...

It's been a while 😄, but I'm back and spend more time on my project. I tried the new simple renderer to see if it supports my use case. It...

I have a similar situation, especially as the source array grows. In my case, an infinite-scroll directive keeps on adding items to the source array. Each time that happens, the...

**Caution:** This is a temporary solution, as it doesn't work when elements are removed from the `source`, which is ok in my case for now. I'll try to spend some...

Hey @atduarte, based on your comment this issue has been deployed, can you confirm? [According to Kyle on Discord](https://discord.com/channels/816244985187008514/1007280790960349235/1007369234948563064), issues are only deployed once they have the `deployed: workspace` label,...

Hey @NateRadebaugh, The following workflow works for me: ```yaml name: services/website on: pull_request: paths: - 'services/website/**' jobs: test: name: Test the services/website runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name:...

It looks like the underlying project is [Siema](https://github.com/pawelgrzybek/siema) and the `perPage` argument can be an object to deal with responsive design. Please check https://codepen.io/pawelgrzybek/pen/dWbGyZ, that should solve the issue without...

I run into that issue as well, related to a monorepo. I have prettier installed in the repository root, but the Svelte code is in `services/website`. When I run Prettier...

I just ran into the same issue. It looks like mongo-mapper hasn't been well maintained with the latest release in November 2014. The mongo dependency mongo-mapper uses (https://github.com/mongomapper/mongomapper/blob/master/gemfiles/Gemfile.common.rb#L10) is most...

Good question, I don't think code highlighting works at all. The config is: ```js mdsvex({ extensions: [".md"], layout: { blog: "./src/components/blog/blog-content-layout.svelte", docs: "./src/components/docs/docs-content-layout.svelte", }, remarkPlugins: [ remarkSetImagePath, [ remarkEmbedVideo, {...