Andrew
Andrew
This cherished project appears to have languished. Perhaps someone would like to fork it and add support for newer Mac SDK's.
Something weird is going on. When I run `npm audit` against grunt-cli master branch, I get no warnings. But when I import grunt-cli 1.3.2 into another project, I get dozens...
Interesting empty unit idea! Could we get an example added to the test suite? I'm trying to use the empty unit for this, but my syntax must be wrong somehow.
I'm not sure. Looks like `Once` expects to run from a function scope, not outside of a function like with lazy_static. Eh, I'm working around this by no longer creating...
I have email. https://github.com/mcandre
I am content with the existing functionality :) Just be sure to regularly scan against any CVE's with both Snyk CLI and with Dependabot.
Plug: https://github.com/mcandre/unmake
On second thought, there is value in encouraging the POSIX Makefile name. Projects that do not depend on extensions to the POSIX make standard, should follow the `Makefile` name. A...
`find` ... `-exec` ... `"{}" +` is suitable when the subprocessing command is able to handle an arbitrary number of arguments. The plus sign enables batching, but more importantly, it...
Also define a clear IFS variable: http://redsymbol.net/articles/unofficial-bash-strict-mode/ And make sure that -e, -u, -o pipefail, IFS are set ONLY for the particular shell implementations that support these features. E.g., bash/ksh/zsh...