Socket
Socket
Sign inDemoInstall

grunt-depsconcat

Package Overview
Dependencies
1
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    grunt-depsconcat

Concatenate files in order based on dependencies


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

grunt-depsconcat

Grunt plugin for concatenating files in order based on dependencies.

Getting Started

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 install grunt-depsconcat --save-dev

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

grunt.loadNpmTasks('grunt-depsconcat');

The "depsconcat" task

Overview

In your project's Gruntfile, add a section named depsconcat to the data object passed into grunt.initConfig().

grunt.initConfig({
  depsconcat: {
    options: {
      // Task-specific options go here.
    },
    your_target: {
      // Target-specific file lists and/or options go here.
    }
  },
})

Taget configuration

[target].options.ext

Type: String

The extension of the files to be concatenated.

[target].options.requireTemplate

Type: String

The regex used to express dependency.

[target].options.nameTemplate

Type: String

The regex used to name a file.

Usage example

The following example shows how to use the task to concatenate a group of classes in hierarchy order using YUIDoc syntax.

grunt.initConfig({
  src: {
    options: {
      requireTemplate: '\\n*@extends\\s+([^\\n\\r]+)[\\n\\r]*',
      nameTemplate: '\\n*@class\\s+([^\\n\\r]+)[\\n\\r]*'
    },
    files: {
      'name.js': [
        'src/*.js',
        'src/**/*.js'
      ]
    }
  }
})

Feedback

Pull requests, feature ideas and bug reports are welcome.

License

MIT.

FAQs

Last updated on 19 Feb 2016

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc