floratmin

Results 22 comments of floratmin

Also when using a monorepo (nrwl/nx) i have to put a package.json file into each e2e directory and switch into this directory before executing cypress. Otherwise the coverage reports of...

I also updated my sample template at https://github.com/floratmin/sapper-subdirectory-example and added scripts with the cwd flag as absolute path. Every combination works. In my nx workspace I also used the additional...

@benmccann linting is passing now and from 150 tests only one is failing. To make the tests passing I had to made an adjustment in the sapper code. Otherwise I...

The problem is that there will, as it seems, `rounding-mode-half-odd` and `rounding-mode-unnecessary` not be included in `Intl.NumberFormat`. Also at the moment, Chrome and Firefox do not implement any `roundingMode`, `roundingIncrement`...

This issue is also connected to the options `minimumFractionDigits`, `maximumFractionDigits`, `minimumSignificantDigits` and `maximumSignificantDigits` together with the `roundingPriority` option. On MDN the documentation is probably wrong on this topic because it...

I just realized that this does not solve my problem. Sometimes I can commit, but most of the times not.

I have just written something to extract translation functions calls into .po files. Currently, I am integrating it into a rollup plugin. My idea is to use the tooling of...

@Kapsonfire-DE ICU messageformat can get very similar to gettext: ``` { $_( `{ n, plural, =0 {I won no awards} one {I won one award} other {I won # awards}...

Hello @Rich-Harris, I am working on a rollup plugin that works on `.svelte` files (including typescript) but also on `.ts` or `.js` files. It should even work on `.jsx` files,...

@johnnysprinkles I think that in many use cases the language is switched mostly only one time. This holds also for my use case. So I developed this part first. But...