Andrew Bradley
Andrew Bradley
Which site holds the official documentation: http://nibstyl.us/ or http://tj.github.io/nib ? I'm just not sure where I should be looking when I need help. Thanks for maintaining nib; it fills such...
This PR avoids lots of unnecessary or duplicate filesystem operations within grunt's `file.expand`, `file.expandMapping`, and `task.normalizeMultiTaskFiles`. It makes file matching much faster without adding much complexity to grunt. The first...
When getting a config "path" (passing e.g. `"foo.bar.baz"` or `['foo', 'bar', 'baz']` to `grunt.config.get`) grunt doesn't process templates as it's stepping through the object graph. ``` js grunt.initConfig({ getFooBarBaz: '',...
Is there an API for executing another task from within my task? I'd like to execute another task from within my own, then perform some cleanup tasks afterwards _even if...
https://runkit.com/cspotcode/5d6dbd91909e38001b72c4b7 bash can encode string literals like this: `$'foo'` For example, `printf %q foo$'\n'bar` will choose to encode in this style: `$'foo\nbar'` bash-parser doesn't seem to parse this.
Implements #109 I also had to tweak the test cases to run on Windows. Spawning tslint, for example, is a bit different on Windows since npm generates a .cmd shim...
When calling `parse('./directory')`, the string is supposed to be interpreted as `cwd`. https://github.com/jonschlinkert/parse-git-config/blob/master/index.js#L36 Yet that value is passed to `resolveConfigPath('./directory')` which treats it as the `type` instead of `cwd`. https://github.com/jonschlinkert/parse-git-config/blob/master/index.js#L58...
Git config supports multiple values for the same key. A real-world example: ``` git config --add url.https://github.com/.insteadof [email protected]: git config --add url.https://github.com/.insteadof ssh://github.com/ ``` parse-git-config doesn't seem to support this;...
Extracting these ideas into a separate thread, since #94 is not focused on the challenges of using the helper functions in multiple loaders. https://github.com/nodejs/loaders/pull/94#issuecomment-1184846638 > You could use them in...
This is a potential gotcha I have on my to-do list to ask about. Loaders cannot block their own thread with `import.meta.resolve` calls, so that will somehow need to be...