Daniel Barreiro

Results 8 issues of Daniel Barreiro

I started a new issue so we keep the occlussion table separate from the forms. Sunday, being a bright, sunny Sunday, I didn't do much. However, I am a little...

Mithirl caches nodes created via the `m()` function, indexed by its first argument. This is an example of a node that caches well: ``` m('a#google.external[href="http://google.com"]", 'Google'); ``` If all those...

delete is a reserved word in JavaScript and should not be used as an identifier. A future interpreter might be more strict that current ones and might fail on this...

When a non-themable component is listed in the include list, such as `FONT_ICON`, or on a typo, the `path.join` that produces `componentPath` produces an error that gives no clue as...

The font sizes on the PDF are humongous. If it is not possible to specify individual font sizes, with options like --body, --h1, --h2, which would be too tedious, perhaps...

help wanted

By adding a few dependencies to package.json: ``` "through2":"*", "msx":"*" "gulp-plumber":"*", ``` and the following to the gulpfile (taken from the msx compiler github page and adapted): ``` var msx...

Currently all the test and source files are installed along the transpiled files in `/lib`, which is, I believe, all the developer needs. Since the packages exist as separate entities...

Diagnostics like [this one](https://github.com/welldone-software/redux-toolbelt/blob/7c1b28f517a5d01341f2f316f6aca92151855577/packages/redux-toolbelt/src/makeActionCreator.js#L26-L31) are not helpful in production versions. It is better to drop them conditionally: ``` if (process.env.NODE_ENV !== 'production') { // diagnostics } ``` When minimized for...

invalid