king8fisher
king8fisher
DDeno
Created by Ooker on 1/11/2024 in #help
JSX element implicitly has type 'any' because no interface 'JSX.IntrinsicElements'
Good catch!
9 replies
DDeno
Created by Ooker on 1/11/2024 in #help
JSX element implicitly has type 'any' because no interface 'JSX.IntrinsicElements'
It must be something less obvious then 😄
9 replies
DDeno
Created by Ooker on 1/11/2024 in #help
JSX element implicitly has type 'any' because no interface 'JSX.IntrinsicElements'
Do you use return when constructing a component? I know it’s silly but that’s my usual thing to forget
9 replies
DDeno
Created by tas13 on 12/3/2023 in #help
Upgraded to Fresh 1.60 but TailwindCSS not rendering
Have you set AOT builds according to #7 in https://fresh.deno.dev/docs/examples/migrating-to-tailwind ?
7 replies
DDeno
Created by alex-009 on 11/6/2023 in #help
Is there a split_to_array function like join_to_string
Is this what you are looking for?
const str = "How is $everything g$oing?"
const breakpoint = /\$e|\$o/
const splitted = str.split(breakpoint)
// [ 'How is ', 'verything g', 'ing?' ]
const str = "How is $everything g$oing?"
const breakpoint = /\$e|\$o/
const splitted = str.split(breakpoint)
// [ 'How is ', 'verything g', 'ing?' ]
3 replies
DDeno
Created by untitled. on 10/26/2023 in #help
readTextFile() not working?
Silencing the linter might have lead to an unnoticed type error
9 replies
DDeno
Created by untitled. on 10/26/2023 in #help
readTextFile() not working?
Otherwise please provide more details
9 replies
DDeno
Created by untitled. on 10/26/2023 in #help
readTextFile() not working?
I would suggest to try “./config.toml”
9 replies
DDeno
Created by Oscar Stars on 10/18/2023 in #help
error on installing
yay
31 replies
DDeno
Created by Oscar Stars on 10/18/2023 in #help
error on installing
Is AVG AntiVirus on by chance?
31 replies
DDeno
Created by Oscar Stars on 10/18/2023 in #help
error on installing
in PS it should be irm https://deno.land/install.ps1 | iex
31 replies
DDeno
Created by Oscar Stars on 10/18/2023 in #help
error on installing
what was your original installation command?
31 replies
DDeno
Created by Oscar Stars on 10/18/2023 in #help
error on installing
Try scoop install deno, something is not right with certificates as far the original error goes.
31 replies
DDeno
Created by shultz🇮🇱 on 10/2/2023 in #help
typescript type definition for deno.json
Cool!
4 replies
DDeno
Created by Mqx on 9/30/2023 in #help
Deno + Lit
What a coincidence 😄 my favorite bird plus a similar desire to use shoelace. I only bumped into issues so far. May be someone could see what might be wrong. https://github.com/king8fisher/shoelace-style-deno/issues/1
22 replies
DDeno
Created by Altus on 9/26/2023 in #help
Fresh ClassList Broken
As far as I understood
72 replies
DDeno
Created by Altus on 9/26/2023 in #help
Fresh ClassList Broken
I think they are minimizing the issue, reproducing it in Testcomp.tsx, there's no localStorage involved. It basically works, it's just the classes that don't show up.
72 replies
DDeno
Created by Altus on 9/26/2023 in #help
Fresh ClassList Broken
Which part are you touching on, @Dun?
72 replies
DDeno
Created by Altus on 9/26/2023 in #help
Fresh ClassList Broken
(would require node-localstorage in pure Node, I think)
72 replies
DDeno
Created by Altus on 9/26/2023 in #help
Fresh ClassList Broken
localStorage indeed exists in Deno runtime separate from the browser which is cool
72 replies