JSPM

  • Created
  • Published
  • Downloads 14325
  • Score
    100M100P100Q133485F

Collection of common gear tasks

Package Exports

  • gear-lib

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gear-lib) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

gear-lib

Collection of common gear tasks

Useful tasks to lint, minify, and deploy assets.

Installation

npm install gear-lib

Quick Examples

Deploy to S3

gear.queue()
 .load(['foo.js', 'bar.js', 'baz.js'])
 .concat()
 .jslint()
 .jsminify()
 .s3({file: 'foobarbaz.js', client: {
    key: '<key>',
    secret: '<secret>',
    bucket: 'gearjs'
 }})
 .run();

Documentation

Tasks

Tasks

### jslint()

Lint Javascript files.

Arguments

  • options - Options for JSLint.

Example

.jslint()

### jsminify()

Minify Javascript files.

Arguments

  • options - Options for uglify-js.

Example

.jsminify()

### csslint()

Lint CSS files.

Arguments

  • options - Options for CSSLint.

Example

.csslint()

### cssminify()

Minify CSS files.

Example

.cssminify()

### s3()

Deploy file to S3.

Arguments

  • options.file - Filename to write to S3.
  • options.client.key - S3 key.
  • options.client.secret - S3 secret.
  • options.client.bucket - S3 bucket.

Example

 .s3({file: 'foobarbaz.js', client: {
    key: '<key>',
    secret: '<secret>',
    bucket: 'gearjs'
 }})