Daniel Weck

Results 315 issues of Daniel Weck

See: https://gist.github.com/danielweck/1b7f2d69f9b614e5ff77

### Prerequisites * [X ] Put an X between the brackets on this line if you have done all of the following: * Reproduced the problem in Safe Mode: *...

Due to this: https://github.com/facebook/jest/pull/9841/files and this: https://github.com/sindresorhus/conf/blob/410cc144141f1467cc91fe4b16f6b7f42a8afac8/index.js#L21-L23 => ``` console.warn `require.cache` modification is not permitted ``` (output'ed many times in the console when unit-testing, with full stacktrace, so quite disruptive,...

References: https://en.wikipedia.org/wiki/%C5%92 https://en.wiktionary.org/wiki/%C5%93uf Mappings: https://github.com/sindresorhus/transliterate/blob/master/replacements.js

Shouldn't the `i` in fact be an `a`? ``` ['آ', 'a'], ['أ', 'a'], ['إ', 'i'], ['ا', 'a'], ``` You may run the following tests in your shell / Javascript console:...

bug
help wanted

There are many different variants which can all be normalized to `-`: https://www.compart.com/en/unicode/category/Pd http://jkorpela.fi/dashes.html However, to keep things simple: https://en.wikipedia.org/wiki/Wikipedia:Hyphens_and_dashes => ``` ["–": "-"], ["—": "-"], ["−": "-"], ["‒": "-"],...

enhancement
help wanted

When using Preact `render-to-string`, Goober's cache grows indefinitely. There is a "global" object (well, module scoped) used to memoize "compiled object" -> "classname/hash" **and** "classname/hash" -> "generated CSS". Code references:...

discussion

**Describe the bug** TypeScript 4.5 `type` modifiers on imported names are not supported. https://devblogs.microsoft.com/typescript/announcing-typescript-4-5-beta/#type-on-import-names **To Reproduce** For example, this works: ```typescript import type { Options, VNode } from 'preact'; import...

bug
upstream