Julian

Results 7 comments of Julian

Hi @mparadina The `platform` directive in my Podfile is: ```ruby platform :ios, '13.0' inhibit_all_warnings! ``` we also use this code in the Podfile to configure the embedded Pod project added...

Also I noticed from the error there's a reference to: `In file included from DW/DW-prefix.pch:30:` which in that precompiled headers file `DW-prefix.pch` for line 30 contains the import of the...

Hi @mparadina, do you have any insights on this? I'm have a paid license key, should I report this through support too? Thank you.

The same is happening to me when moved to package sass (Dart Sass), it wasn't happening on node-sass

It seems it could be caused by some mixture of units given as parameter to calc(), e.g. the following break as indicated on the issue: ``` data = '$var1: calc(100%...

From @donar06 code example if I do it the old way without the `calc()` function I get **incompatible units**: ``` Error: 100% and 70px have incompatible units. ╷ 1 │...

@donar06, if you haven't gotten around that issue try string interpolation around the cal() function: `'$var1: #{calc(100% - 70px - .625rem)};'`