Derek Kent

Results 6 comments of Derek Kent

The most obvious use case I think I've seen so far is when an element is manipulated by a 3rd party or expensive script that you don't want `patch` to...

@davidjamesstone I've run into a similar issue trying to use `pattern` for zip codes in a form. The regex pattern for zip codes is `pattern="(\d{5}([\-]\d{4})?)`, which fails due to the...

@davidjamesstone: I only looked at the superviews transformation code briefly, so this is a little bit shooting from the hip, but can you do something similar to reference counting? —...

I ran into the same issue and ended up writing a custom report function to set the `process.exitCode` to `1` if there is an error: ``` js function scsslint() {...

@ehaeusler It should continue to run even if warnings/errors are thrown (it won't stop the next tests from being run either). But if you're using any kind of continuous integration...

I've been working around this by appending `-template` to all of my templates, but it's a definitely a gotcha that can take a while to debug.