Stephen Mathieson
Stephen Mathieson
Just using builder directly makes sense, thats true.
For what it's worth, your plugin can be simplified quite a bit: ``` js module.exports = function (builder) { var map = builder.config.standalone; var local = builder.local(); var name =...
a - yeah, noticed that. i obviously didn't test that :p b - what about `'window[' + name + '] = require("' + builder.config.locals[0] + '")'`? i don't think we'll...
yeah, not only that, but it looks like the `realloc()`s are bad :/
lemme check
nope, still broken: ``` $ valgrind --leak-check=full ./test ==2060== Memcheck, a memory error detector ==2060== Copyright (C) 2002-2011, and GNU GPL'd, by Julian Seward et al. ==2060== Using Valgrind-3.7.0 and...
we should probably refactor to not rely on `realloc` and just compute the length of the encoded/decoded arrays beforehand so we just `malloc` once. if a refactor is cool with...
Currently dealing with this. Error log ```json { "error": "Expected value which is `predicate returns truthy for any value`, received values of types `string`.", "stack": "TypeError: Expected value which is...
In my case, a string was being passed as `timeout`. As suggested in the original comment, an error indicating that the `timeout` option was of the incorrect type would be...
Yeah for clib(1), we just have an `uninstall` key, or fallback to [the default](https://github.com/clibs/clib-uninstall/blob/master/src/clib-uninstall.c#L95).