
Security News
Next.js Patches Critical Middleware Vulnerability (CVE-2025-29927)
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
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 2,191 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
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
Security News
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.