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-manifest-concat

v0.0.11

Published

Manifest based script concatenation. Inspired by Sprockets.

Downloads

14

Readme

grunt-manifest-concat

Manifest based script concatenation. Inspired by Sprockets.

Getting Started

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-manifest-concat --save-dev

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

grunt.loadNpmTasks('grunt-manifest-concat');

Usage

Setup

Add a section named manifest inside grunt.initConfig in your Gruntfile.

grunt.initConfig({
	manifest: {
		dist: {
			src: 'js',
			dest: 'build'
		}
	}
});

When this task is run It will search for *.json files inside the src directory, process those files and follow their directives to finally output the concatenated result to the dest directory.

Manifest Files

This is the basic structure of a manifest file:

{
  "contents": [
    { "require_tree": "vendor" },
    { "require_directory": "lib/modules" },
    "lib/main.js",
    "lib/debug.js"
  ]
}

The directives are defined inside the contents array, where the key is the directive type, and the value is the directive subject.

General Behaviour Notes

Paths

All paths are case sensitive and relative to the manifest file. It's possible to use absolute paths. URLs to remote resources are not supported.

Order

The order sprcified inside contents will be preserved, and while require_directory and require_tree take the files alphabethically It's possible to use mix the require if you need a specific file to be added first.

{
  "contents": [
    "lib/modules/helpers.js",
    { "require_directory": "lib/modules/models" },
    { "require_tree": "lib/modules" }
  ]
}

Content Duplication

It was decided not to implement the include directive as grunt-contrib-concat tasks will get rid of any duplicated files and keep each file once, the first time they appear.

Clashing Manifest Names

It's recommended to have unique names for manifests as they can overwrite each other during the output process.

Options

Options can be set inside the task definition on the Gruntfile or can be added directly to the manifest files, for more granular control.

sourceMap

Type: Boolean Default: false

Tells grunt-contrib-concat tasks to generate the sourceMap.

banner

Type: Boolean Default: false

Tells grunt-contrib-concat tasks to include a banner. The banner cannot be customized and includes the name of the manifest as a single line comment.

// Manifest: js/vendor.json

extension

Type: String Default: "js"

The extension dictates what type of files are found by the require_directory and required_tree directives and will also be used to construct the result file for each manifest <manifest name>.<extension>.

cwd

Type: String Default: ""

Gives the option of setting a shared base path for all contents. Only some directives can take advantage of this feature.

dest

Type: String Default: Read from Gruntfile

It's possible to override the dest value for each individual manifest file by using this option. It can be a directory or a file with an extension matching the extension option.

Available Directives

require

Subject: File (cwd aware)

Inserts the contents of a file. If a file is required multiple times It will only appear once. It can be specified either by using a string that contains the path or by providing an object:

{
  "options": {
    "cwd": "vendor"
  },
  "contents": [
    "jquery.min.js",
    { "require": "jquery.history.js" }
  ]
}

require_directory

Subject: Directory

Inserts the contents of all files inside the given path. Files are matched based by extension and are required in alphabethical order.

{
  "contents": [
    { "require_directory": "vendor/modules" }
  ]
}

require_tree

Subject: Directory

Works like require_directory but It recursively search for files inside the given path.

{
  "contents": [
    { "require_tree": "vendor" }
  ]
}