Paweł Gulbinowicz

Results 15 issues of Paweł Gulbinowicz

Transpiling `node_modules` has some serious performance degradation - on fresh app, build takes 3x more time (~5s vs ~14s). cc: @thymikee @satya164 @grabbou @Krizzu

Add option to create a custom colour profile and use it with `addTarget` method (https://developer.android.com/training/material/palette-colors.html#extract-color-profiles and https://developer.android.com/reference/android/support/v7/graphics/Palette.Builder.html#addTarget(android.support.v7.graphics.Target)). The main difficulty is to find a nice way to create `Target` in...

feature
Hacktoberfest

### Summary Add missing `ignoreRestSiblings` to allow to omit values in destructuring assignment. Without `ignoreRestSiblings: true` this code fails: ```ts const { modalDialogs: _, ...rest } = (params ?? {})...