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

grunt-gumup

v0.1.0

Published

Concatenate Gumup units.

Downloads

8

Readme

grunt-gumup

Concatenate Gumup units.

Getting Started

This plugin requires Grunt ~0.4.0

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-gumup --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-gumup');

Gumup task

Run this task with the grunt gumup command.

Task targets, files and options may be specified according to the Grunt Configuring tasks guide.

Options

Any specified option will be passed through directly to Gumup, thus you can specify any option that Gumup supports.

onResolve

Type: String Function
Default: null

Set the resolved dependencies as value into the project's Grunt configuration or pass them as an argument to user callback. If it is null then the dependencies will be concatenated to the dest files.

separator

Type: String
Default: grunt.util.linefeed

Concatenated files will be joined on this string. If you're post-processing concatenated JavaScript files with a minifier, you may need to use a semicolon ';' as the separator.

Gumup options

cwd

Type: String
Default: '.'

All options paths are relative to this path.

encoding

Type: String
Default: 'utf-8'

Unit files encoding.

externals

Type: GumupOptions~externals[]
Default: []

External units description.

gumupSpy

Type: Function
Default: null

Callback to setup the GumupSpy constructor. It is used to extend Gumup functionality. The callback accepts one argumet that is a current implementation of the constructor. You can extend this constructor or return your own.

unitPath

Type: String[]
Default: ['.']

Paths that are used to find the Gumup units.

GumupOptions~externals

globals

Type: String
Default: []

Global variables that are occuped by the external unit.

files

Type: String
Default: []

Files of the external unit.

usages

Type: String

Gumup unit files that depends from this unit.

Usage Examples

Default options

This configuration will resolve dependencies of the main unit and concatenate them.

grunt.initConfig({
  gumup: {
    dist: {
      files: {
        'dest/index.js': ['main.js']
      }
    }
  }
});

Pass the result to a task

This configuration will resolve dependencies of the main unit and pass them to uglify:dist task.

grunt.initConfig({
  gumup: {
    dist: {
      options: {
        onResolve: 'uglify.dist.files'
      },
      files: {
        'dest/index.js': ['main.js']
      }
    }
  }
});

Process the result with a user callback

This configuration will resolve dependencies of the main unit and log them.

grunt.initConfig({
  gumup: {
    dist: {
      options: {
        onResolve: function(fileList) {
          console.log(fileList);
        }
      },
      files: {
        'dest/index.js': ['main.js']
      }
    }
  }
});

Sample from the tests

grunt.initConfig({
  gumup: {
    sample: {
      options: {
        cwd: 'test/fixtures',
        externals: [
          {
            globals: ['firstLib'],
            files: ['third-party/first-lib.js'],
            usages: ['sample/lib/first.js']
          },
          {
            globals: ['secondLib'],
            files: [
              'third-party/third-lib.js',
              'third-party/second-lib.js'
            ],
            usages: ['sample/baz.js']
          }
        ],
        unitPath: ['sample']
      },
      files: {
        'tmp/sample-with-required-units.js': [
          'test/fixtures/sample/main.js',
          'test/fixtures/sample/util/*'
        ],
        'tmp/sample-without-required-units.js': [
          'test/fixtures/sample/main.js'
        ]
      }
    }
  }
});

Contributing

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.

Release History

(Nothing yet)