Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
grunt-lib-contrib
Advanced tools
Common functionality shared across grunt-contrib tasks.
The purpose of grunt-lib-contrib is to explore solutions to common problems task writers encounter, and to ease the upgrade path for contrib tasks.
These APIs should be considered highly unstable. Depend on them at your own risk!
Over time, some of the functionality provided here may be incorporated directly into grunt for mainstream use. Until then, you may require grunt-lib-contrib
as a dependency in your projects, but be very careful to specify an exact version number instead of a range, as backwards-incompatible changes are likely to be introduced.
This helper is used to build JS namespace declarations.
Convert an object to an array of CLI arguments, which can be used with child_process.spawn()
.
// Example
{
fooBar: 'a', // ['--foo-bar', 'a']
fooBar: 1, // ['--foo-bar', '1']
fooBar: true, // ['--foo-bar']
fooBar: false, //
fooBar: ['a', 'b'] // ['--foo-bar', 'a', '--foo-bar', 'b']
}
Strip a path from a path. normalize both paths for best results.
Helper for logging compressed, uncompressed and gzipped sizes of strings.
var max = grunt.file.read('max.js');
var min = minify(max);
minMaxInfo(min, max);
Would print:
Uncompressed size: 495 bytes.
Compressed size: 36 bytes gzipped (396 bytes minified).
--
Lib submitted by Tyler Kellen.
FAQs
Common functionality shared across grunt-contrib tasks.
The npm package grunt-lib-contrib receives a total of 9,394 weekly downloads. As such, grunt-lib-contrib popularity was classified as popular.
We found that grunt-lib-contrib demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.