Thomas Jaggi

Results 23 comments of Thomas Jaggi

The last version where the tests we specified in https://github.com/unic/estatico/tree/develop/test/css still work (clone the repo and run `npm test`) is 2.0.3 _in combination_ with `node-sass`

Switching from `gulp-autoprefixer` to `gulp-postcss` (as suggested in https://github.com/sindresorhus/gulp-autoprefixer/pull/66#issuecomment-238671153) seems to "fix" the incomplete sources. However, line-numbers are still off when nesting selectors in SCSS (pointing everything to the root...

@xzyfer, would you mind having another look at this?

Let's wait for https://github.com/sass/libsass/pull/2216 to land in `node-sass`, it certainly sounds promising.

I think this occurs when the syntax is set to CSS instead of SCSS. I was working around this here: https://github.com/kungfusheep/SublimeLinter-contrib-stylelint/issues/15 However, it would probably make sense for the linter...

A basic example: ```js const puppeteer = require('puppeteer'); const DataURI = require('datauri'); const chalk = require('chalk'); const datauri = new DataURI(); // Create data URI of basic HTML page //...

Sorry, good point. :) I was referring to your message from above: > I'm interested in how this will work. Just in case you wondered what running QUnit tests in...

Hi Chris In order for a remote validation to work, we would have to be able to return an async function: ```js var validate = new Bouncer('form', { customValidations: {...

Let's say we want to check whether a username is already taken. It saves the user an enormous amount of time getting informed while typing that another name needs to...

Ah, very good point. Would some kind of plugin approach be an option, allowing users to overwrite `publicAPIs`? The changes I made for my requirement to work: https://github.com/cferdinandi/bouncer/compare/master...backflip:master