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-lodash
Advanced tools
A Grunt wrapper around the lodash command-line interface, lodash-cli.
This plugin has been discontinued. No further development is expected.
This plugin requires Grunt ^0.4.1
.
If you haven’t used Grunt before, be sure to check out the “Getting Started” guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you’re familiar with that process, you may install this plugin with this command:
$ npm i --save-dev grunt-lodash
Once grunt-lodash has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-lodash');
In your project’s Gruntfile, add a section named lodash
to the data object passed into grunt.initConfig()
:
grunt.initConfig({
'lodash': {
'build': {
// output location
'dest': 'build/lodash.build.js',
'options': {
// modifiers for prepared builds
// modern, strict, compat
'modifier': 'modern'
}
}
}
});
As you might have guessed, this would produce the same output as:
$ lodash modern -o build/lodash.build.js
Finally, include the lodash
invocation in your desired build task:
grunt.registerTask('build', [
'clean:dist',
'lodash'
]);
For a more in-depth explanation of the build options head on over to the lodash-cli documentation.
'lodash': {
'target': {
// output location
'dest': 'build/lodash.build.js'
},
'options': {
// modifiers for prepared builds
// modern, strict, compat
// also accepts an array to allow combination with 'strict'
'modifier': 'modern',
'modularize': true,
'category': ['collection', 'function'],
'exports': ['amd', 'commonjs', 'node'],
'iife': '!function(window,undefined){%output%}(this)',
'include': ['each', 'filter', 'map'],
'minus': ['result', 'shuffle'],
'plus': ['random', 'template'],
'template': './*.jst',
'settings': '{interpolate:/\\{\\{([\\s\\S]+?)\\}\\}/g}',
'moduleId': 'underscore',
// with or without the --
// these are the only tested options,
// as the others don’t make sense to use here
'flags': [
'--stdout',
'development',
'--production',
'source-map'
],
// with or without the -
// these are the only tested options,
// as the others don’t make sense to use here
'shortFlags': [
'c',
'-d',
'p',
'-m'
]
}
}
Tested in Node.js 0.10.x, 0.12.x, 4.x, & 5.x.
FAQs
A Grunt wrapper around lodash-cli.
The npm package grunt-lodash receives a total of 1,950 weekly downloads. As such, grunt-lodash popularity was classified as popular.
We found that grunt-lodash demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.