
Product
Introducing Custom Pull Request Alert Comment Headers
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Allows hooking tasks to grunt from other files.
This plugin requires Grunt ~0.4.5
.
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 install grunt-hook --save
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-hook');
In your project's Gruntfile, add a task named hook
as "placeholder" to run all the injected tasks. This task will run all the tasks you injected.
module.exports = function(grunt) {
grunt.registerTask('default', ['jshint', 'hook']);
};
_Gruntfile.js
on your package.function
with arguments of function(grunt)
grunt.config.extend()
grunt.hook.push(task[, weight]);
_Gruntfile.js
watch
task in order to add watch tasks...'use strict';
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.config.merge({
concat: {
dist: {
src: ['*.js'],
dest: 'test-concat.js'
}
}
});
//Inject the task to the task list
grunt.hook.push('concat', 10);
};
You can change the patterns of the files by adding hookPatterns
to your config.
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.initConfig({
hookPatterns: ['_Gruntfile.js', '**/_Gruntfile.js', '!node_modules/**']
});
};
grunt-hook
You can learn from use-cases of projects that uses grunt-hook
:
grunt-hook
to allow creating new tasks to the general flow of the framework by 3rd-party packages(like mean-compass
).grunt-hook
plugin.In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
(0.3.0) Renaming the package (0.2.0) loading outside the task (0.1.0) initial release
FAQs
Allows hooking tasks to grunt from other files.
We found that grunt-hook demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.