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.js tasks
Useful tasks to lint, minify, and deploy assets.
Installation
$ npm install gear-libQuick Examples
Deploy to S3
new Queue({registry: new Registry({module: 'gear-lib'})})
.read(['foo.js', 'bar.js', 'baz.js'])
.concat()
.jslint({config: {nomen: true}})
.jsminify()
.s3({name: 'foobarbaz.js', client: {
key: '<key>',
secret: '<secret>',
bucket: 'gearjs'
}})
.run();Documentation
Tasks
Tasks
### jslint()Lint Javascript files.
Arguments
- options.config - Options for JSLint.
Example
.jslint({config: {nomen: true}})### jsminify()
Minify Javascript files.
Arguments
- options.config - Options for uglify-js.
Example
.jsminify()### csslint()
Lint CSS files.
Arguments
- options.config - Options for CSSLint.
Example
.csslint({config: {'duplicate-properties': true}})### cssminify()
Minify CSS files.
Aliased as less()
Example
.cssminify()
// Compile LESS stylesheets without minifying
.less({compress: false})### replace()
Replace strings using RegExp.
Arguments
- options.regex - RegExp object or string.
- options.flags - RegExp flags if using string.
Example
.replace({
regex: "Y.log\\(.+?\\);?",
replace: '',
flags: 'mg'
})
.replace({
regex: /Y.log\(.+?\);?/mg,
replace: ''
})### glob()
Read files using wildcards. See Glob package
Arguments
- options.pattern - Glob pattern.
- options.options - Glob options.
Example
.glob({
pattern: "*.js"
})### s3()
Deploy file to S3.
Arguments
- options.name - Filename to write to S3.
- options.client.key - S3 key.
- options.client.secret - S3 secret.
- options.client.bucket - S3 bucket.
Example
.s3({name: 'foobarbaz.js', client: {
key: '<key>',
secret: '<secret>',
bucket: 'gearjs'
}})