Sebastian Nemeth

Results 29 comments of Sebastian Nemeth

Fusebox does seem to be in winning mode. I just discovered they're working on version 2.0 (currently in beta) - http://fuse-box.org:3333/ One of the new features include css-modules... http://fuse-box.org:3333/plugins/cssmodules-plugin Combine...

I am coming around to the idea of typestyles too... and what you said does make a lot of sense. I think another great benefit of typestyles is that it...

Yeah this is quite annoying for me... all I want is to sync a secret across namespaces and here I am trying to configure certificates for an apiserver that I'm...

Hi, I also have just hit this limitation. In my scenario, I am trying to load data from Prismic for a Homepage that has many small articles. In this case...

This worked for me, though I think we should be able to optionally 'brute force' certain troublesome vendor deps through babel, as an escape hatch for when authors have released...

I find it odd that bazel, which is a tool for builds in monorepos, doesn't play nice with other monorepo management tools like yarn workspaces or nx. What's the ideal...

Is there any level of compatibility with yarn workspaces? I'm playing around with trying to build in a monorepo managed by yarn workspaces, and it seems like the workspaces dirs...

Just read that rxjs 6 will be 10x smaller, if that helps.

Sure it's ``` module.exports = { root: true, parser: '@typescript-eslint/parser', extends: [ 'eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:@typescript-eslint/recommended-requiring-type-checking', 'prettier' ], plugins: ['svelte3', '@typescript-eslint'], ignorePatterns: ['*.cjs', 'svelte.config.js'], overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }],...

The thing is that the Typescript compiler has been architected to describe types in full semantic accuracy, rather than communicate types to developers with full clarity. If we had a...