Francisco

Results 31 comments of Francisco

From a notebook with 2800 notes, 7 had the CDATA problem. I did manage to solve my case, but I still think some robustness (considering those errors do happen) would...

I have a similar problem. I can only see the errors if I set `failOnError: true` but then, the whole webpack-dev-server stops serving even previous builds

OK, found my answer shortly after. Looks like I had to `getSourceFile` not from the `index.ts` but from the `index.d.ts` to find references from other packages... which is kind of...

Has anyone already considered the functionality conflict of an asset pipeline with the stylesheet component? If a pipeline sees `app.css.scss` it will be expected to deal with Sass, although IMHO,...

I hope this is the right place for this question, and sorry for forgetting to ask a few days ago when you guys were preparing for the RubyRogues podcast Just...

I should present myself as the micro-services gemified apps obsessed user! :weary: It is hard to summarize down the rough edges I encountered. Reading the [first section of this README](https://github.com/zenbits/pademo/tree/master/vendors#gemified-apps)...

after some fixes to my rough edges notes I am realized that a good part of my "rough edges" are more related to my lack of understanding of Padrino! Please...

@dariocravero no worries, I was stuck until now because of https://github.com/padrino/padrino-framework/issues/1745 and I do not have too much time. Unfortunately it seems I will be busy bending backwards with some...

Here goes an update for people having the same problem I've just realized of this alternative hack: ``` render('/path/my/layout', :layout => nil) do render 'home/index', :layout => nil end ```...