npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

sails-hook-grunt

v5.0.0

Published

The Grunt hook from Sails core in v1.0 and up.

Downloads

24,860

Readme

sails-hook-grunt

Implements support for the built-in asset pipeline and task runner in Sails.

This is a core hook in the Sails.js framework. You can override or disable it using your .sailsrc file or environment variables. See Concepts > Configuration for more information.

Dependencies

In order for this hook to load, the following other hooks must have already finished loading:

N/A

Dependents

If this hook is disabled, in order for Sails to load, the following other core hooks must also be disabled:

N/A

Purpose

This hook's responsibilities are:

Run a Grunt tasklist when Sails is loaded

When Sails is loaded, this hook spins up a Grunt child process and runs the conventional tasklist. The tasklist to run depends on the environment (sails.config.environment).

This hook will first look for a file in tasks/register/ that corresponds with the environment name (e.g. if your environment is set to 'staging', then Sails will look for a tasklist file named staging.js). If no such tasklist file is found, but environment is production, then the prod tasklist is used (a special case for compatibility). Otherwise, the default Grunt tasklist is used.

Parse and log output

This hook's runTask method binds events to the child process output streams, through which it receives stdout and stderr output from the Grunt child processes and uses several different heuristics to parse it and display at the appropriate log level.

Track Grunt child process for cleanup when Sails shuts itself down

To prevent proc leaks, Sails keeps track of the Grunt child process on sails.childProcesses.

Implicit defaults

This hook sets the following implicit default configuration on sails.config:

N/A

Events

hook:grunt:loaded

Emitted when the Grunt hook has been automatically loaded by Sails core, and triggered the callback in its initialize function.

hook:grunt:done

Emitted when the Grunt child process exits with a normal status code. (in development, this will not fire until the app is lowered, since grunt-contrib-watch keeps the child process active)

This event is experimental. It is very possible that it will change in a future release.

hook:grunt:error

Emitted when the Grunt child process exits with a non-zero status code.

This event is experimental. It is very possible that it will change in a future release.

Methods

sails.hooks.grunt.runTask()

Fork a Grunt child process that runs the specified task.

sails.hooks.grunt.runTask(taskName);

Or:

  • sails.hooks.grunt.runTask(taskName, cb);
Usage

| | Argument | Type | Details | --- | --------------------------- | ------------------- | ------------------------------------------------------------------------ | 1 | taskName | ((string)) | The name of the Grunt task(list) to run. | 2 | cb | ((function)) | Optional. Fires when the Grunt task has been started (non-production) or finished (production).

API: Private
  • Please do not use this method in userland (i.e. in your app or even in a custom hook or other type of Sails plugin).
  • Because it is a private API of a core hook, if you use this method in your code it may stop working or change without warning, at any time.
  • If you would like to see a version of this method made public and its API stabilized, please open a proposal.

(internally in core, note that this is called directly by sails www in the CLI--see bin/sails-www.js)

FAQ

What is this?

This repo contains a hook, one of the building blocks Sails is made out of.

What version of Sails is this for?

This hook is a dependency of Sails core in Sails v1, and beyond.

Can I disable this hook?

Yes. To disable this hook, merge the following JSON into your app's .sailsrc file:

{
  "hooks": {
    "grunt": false
  }
}

Can I override this hook to use a different asset pipeline like Gulp or Webpack?

Yes. To override this hook, define your replacement hook under your app's api/hooks/ directory. Or, to share your override with the world, publish it on NPM (e.g. @mynpmusername/sails-hook-grunt or sails-hook-webpack). Just be sure to include the following in your package.json:

"sails": {
  "isHook": true,
  "hookName": "grunt"
}

See the package.json file in this repo for reference.

For more information on overriding core hooks, check out Extending Sails > Hooks.

Help

If you have further questions or are having trouble, click here.

Bugs   NPM version

To report a bug, click here.

Contributing

Please observe the guidelines and conventions laid out in the Sails project contribution guide when opening issues or submitting pull requests.

NPM

License

The Sails framework is free and open-source under the MIT License.