Qwerty (Vítězslav Ackermann Ferko)

Results 99 comments of Qwerty (Vítězslav Ackermann Ferko)

**Problem solved!** It is caused by a symbolic link for my `repos` folder. ``` C:\>dir Directory of C:\ 27.09.2018 20:07 repos [C:\Users\Qwerty\repos] ``` When I run `yarn` or `npm i`...

@Kamahl19 I wonder, how do you see the red errors coming from prettier? It doesn't work for me. I just installed new tsdx project, changed `printWidth` in `package.json` to `10`...

Yes, workspaces are actually detectable from root package.json and it would solve this particular issue with yarn. Cool, ``` // package.json { "workspaces": [ "packages/*" ] } ``` Anyway, what...

Can you point me to an appropriate file? I think I will just check package.json for the `workspaces` property and if it's there, run yarn with `-W`, does that sound...

Why bother with AST and not use control components? Instead of this ``` {someFlag && } {data.map((item) => )} {someOtherFlag ? : } ``` write this ``` ``` The advantage...

`` creates an isolated context. The iframe doesn't share scripts or stylesheets with the main document. This might actually be trickier than you might think. If you just want to...

Not sure about the differences between sync/backup you guys mentioned, but this is the one I use to recover in a new browser: ![image](https://user-images.githubusercontent.com/2313018/70654307-56f6c700-1c56-11ea-99f5-cb3badb5746f.png) Is that not correct? Also, how...

> preferences can be synced separately via the browser sync feature @narcolepticinsomniac I am still no smarter, I think I am doing it wrong and missing some core feature. :)...

@deef0000dragon1 BTW, github's gists are really just git repositories, you can check both out locally. You can even checkout gist and push it into a git remote. Gist just doesn't...

So, path aliases are supported by mocha, am I reading this right? Because in my previous experiment, it was clear that this doesn't work ``` import AABI from '@abi/ExampleABI.json' ```...