Socket
Socket
Sign inDemoInstall

grunt-seajs-transport

Package Overview
Dependencies
100
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    grunt-seajs-transport

Extract the ids and dependencies of the cmd module.


Version published
Weekly downloads
4
decreased by-42.86%
Maintainers
1
Install size
12.4 kB
Created
Weekly downloads
 

Readme

Source

grunt-seajs-transport Build Status

Extract the id and dependencies of a CMD module and convert it to a Transport module.

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-seajs-transport --save-dev

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

grunt.loadNpmTasks('grunt-seajs-transport');

The "seajs_transport" task

Overview

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

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

Options

options.id

Type: Boolean Default value: true

Whether to extract the id of the module (use filename, eg: foo.js => foo).

options.deps

Type: Boolean Default value: true

Whether to extract the depedencies of the module.

options.idPrefix

Type: String Default value: ''

Append a prefix to the id of the module.

options.quoteChar

Type: String Default value: "

The quotation wrapping the id and dependency.

options.space

Type: Boolean Default value: true

The space after the , in the arguments of the define function.

Usage Examples

Basic
grunt.initConfig({
  seajs_transport: {
    some_name: {
      options: {},
      files: [{
        expand: true,
        cwd: 'action',
        src: '**/*.js',
        dest: 'min/action'
      }]
    }
  }
});
Transport the minified file

This grunt plugin can transport the minified file. Besides, if you omit the dest property of the files object, the transported file will override the source file.

grunt.initConfig({
  seajs_transport: {
    some_name: {
      options: {
        space: false
      },
      files: [{
        expand: true,
        cwd: 'min/action',
        src: '**/*.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

2016-02-21 0.1.5

  • Update for Grunt 1.0.
  • Fix a minified test bug.

2014-11-03 0.1.4

Display the number of the handled files in output log.

2014-09-23 0.1.3

Fix the git url in package.json because of the stupid grunt-init.

2014-09-23 0.1.2

Add travis ci.

2014-09-23 0.1.1

Publish a npm package.

2014-09-23 0.1.0

The first version.

Keywords

FAQs

Last updated on 21 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