Josh Habdas
Josh Habdas
Dug in a little more and see the CLI is linting with the regex here: https://github.com/folke/devmoji/blob/master/src/cli.ts#L27 It can be modified slightly to check for the emoji: ```js ^(?:?[a-z-]+)(?:\((?[a-z-0-9]+)\))?(!?):\s+(📦️|✨)(?.*) ``` Suppose...
I bumped to the v2 alpha (build 2) and it looks like some plugins are missing from the packaged bundles. Things I was looking for are `weekOfYear`, `isBetween` and `isSameOrAfter`...
If reworking the code, a rethink on how plugins are included would be nice (especially since only two or three have been implemented). Currently my static analysis tools aren't able...
> We as of today don't process `extends` inside tsconfig afaik A sparse `tsconfig` file with `extends` is how SvelteKit apps are scaffolded today by default. Are you sure?
Was seeing same error as OP on SvelteKit beta 301 and scratching my head as to why the kit example in this repo was working but not the NPM module....
Adding `svelte-fullcalendar` was the second step I took after scaffolding a new project so there's very little at play in the repo I'm working on (read: no magic or hacks...
I'd like to point out I'm also able to get the calendar to display without using dynamic imports (in other words, no need to use `onMount`) by deduping `@fullcalendar/common` once...
Tested 2.0.0-beta.0 with success. Regarding the instructions I wanted to mention you could combine the following: ```ts import type { CalendarOptions } from 'svelte-fullcalendar'; import FullCalendar from 'svelte-fullcalendar'; ``` Can...
If it helps Yogev, I've found the following workflow useful for managing kit updates: - Pick a minimum supported kit version and document it in the readme with a badge...
Validated direct SSH logins into TermuxArch using JuiceSSH can bypass the intermediate step of first accessing Termux. Setup notes: - Dont forget to set ssh user `passwd` - Use `pkill...