{"_id":"gulp-logger","_rev":"12-fc1dd393c06ba269b84830075c9bd629","name":"gulp-logger","description":"Gulp plugin for logging stream stages, transformation and progress","dist-tags":{"latest":"0.0.2"},"versions":{"0.0.1":{"name":"gulp-logger","version":"0.0.1","description":"Gulp plugin for logging stream stages, transformation and progress","main":"index.js","scripts":{"test":"node test/test.js"},"repository":{"type":"git","url":"https://github.com/chrisgreeff/gulp-logger.git"},"keywords":["gulp","gulpplugin","log","logger","debug","output","progress"],"author":{"name":"Chris Greeff"},"license":"ISC","dependencies":{"chalk":"^0.5.1","gulp-util":"^3.0.0","rename":"^0.2.3","through2":"^0.5.1"},"devDependencies":{"assert":"^1.1.1","colored-tape":"^1.0.1","gulp":"^3.8.6","jslint":"^0.6.1"},"bugs":{"url":"https://github.com/chrisgreeff/gulp-logger/issues"},"homepage":"https://github.com/chrisgreeff/gulp-logger","_id":"gulp-logger@0.0.1","_shasum":"ef64d98683855e07e2ef6f844fd539cd59c050c0","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"chrisgreeff","email":"chris.r.greeff@gmail.com"},"maintainers":[{"name":"chrisgreeff","email":"chris.r.greeff@gmail.com"}],"dist":{"shasum":"ef64d98683855e07e2ef6f844fd539cd59c050c0","tarball":"https://registry.npmjs.org/gulp-logger/-/gulp-logger-0.0.1.tgz","integrity":"sha512-DJIQc9bAYZ9n+rtDtYuOp1ouQuqJin1bHnReE5MNZlu/CLtpj1tombjhKi2CseV9M36brwvjgEc4BFIYeKZpVQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBow/NXfTvAgc9HkXJIO0RFbp+avSTPBD1KhrNxwNaYaAiEA8JQk4CYyoLHemB1PmkuuxLMDDgq/jQEnepWCuJDEkos="}]}},"0.0.2":{"name":"gulp-logger","version":"0.0.2","description":"Gulp plugin for logging stream stages, transformation and progress","main":"index.js","scripts":{"test":"node test/test.js"},"repository":{"type":"git","url":"https://github.com/chrisgreeff/gulp-logger.git"},"keywords":["gulp","gulpplugin","log","logger","debug","output","progress"],"author":{"name":"Chris Greeff"},"license":"ISC","dependencies":{"chalk":"^0.5.1","gulp-util":"^3.0.0","rename":"^0.2.3","through2":"^0.5.1"},"devDependencies":{"assert":"^1.1.1","colored-tape":"^1.0.1","gulp":"^3.8.6","jslint":"^0.6.1"},"bugs":{"url":"https://github.com/chrisgreeff/gulp-logger/issues"},"homepage":"https://github.com/chrisgreeff/gulp-logger","_id":"gulp-logger@0.0.2","_shasum":"0ec000bf91e8cae424305da0f9057af3158332b0","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"chrisgreeff","email":"chris.r.greeff@gmail.com"},"maintainers":[{"name":"chrisgreeff","email":"chris.r.greeff@gmail.com"}],"dist":{"shasum":"0ec000bf91e8cae424305da0f9057af3158332b0","tarball":"https://registry.npmjs.org/gulp-logger/-/gulp-logger-0.0.2.tgz","integrity":"sha512-Dn9exoRfaUd0CZyjJWt/1Exw7dNYlJ2flMTrbtZkb1XqRxppzfmamIZDzKOvAaLkJbfaJfP9jA82WX0bwfwtfA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC+Pq+/2Btr0hkis7bhumsFIoI28ha2zbTKztm9el7M2wIhAI7eZUaykEbCBhsSJcsnvl2dLrzNoJjUgDVKRA9nnzoV"}]}}},"readme":"gulp-logger\n===========\n\nLogger plugin for [gulp](http://gulpjs.com/) for logging stream stages, transformations and progress.\n\n# Install\n\n```bash\n$ npm install gulp-logger --save\n```\n\n# Basic Usage\n\nSomething like this:\n\n```js\nvar gulp = require('gulp'),\n    gzip = require('gulp-gzip'),\n    logger = require('gulp-logger');\n\ngulp.task('gzip', function () {\n    gulp.src('**/*.js')\n        .pipe(logger({\n            before: 'Starting Gzip...',\n            after: 'Gzipping complete!',\n            extname: '.js.gz',\n            showChange: true\n        }))\n        .pipe(gzip());\n});\n```\n\nAnd a folder structure like this:\n\n```text\nfiles-to-stream/\n    |- baz/\n    |   |- file.js\n    |   `- wat.js\n    |\n    |- foo.js\n    |- bar.js\n    `- derp.js\n```\n\nWould give you this:\n\n![Imgur](http://i.imgur.com/NvKNwAY.png)\n\n## Options\n\n#### `before` *String*\nThe message you want to show before the chunks are shown.\n\n#### `after` *String*\nThe message you want to show after the chunks are shown.\n\n#### `beforeEach` *String*\nThe message you want to show before each chunk.\n\n#### `afterEach` *String*\nThe message you want to show after each chunk.\n\n#### `prefix` *String*\nA constant value to prefix to each filename in the chunk.\n\n#### `suffix` *String*\nA constant value to suffix to each filename in the chunk.\n\n#### `extname` *String*\nA constant value to set as the extension for each filename in the chunk.\n\n#### `basename` *String*\nA constant value to set as the basename for each filename in the chunk.\n\n#### `dest` *String*\nA constant value to set as the dest for each filename in the chunk.\n\n#### `colors` *Boolean*\nWhether or not to turn off colors on the output.\n\n#### `display='rel'` *String*\n\nHow you want the path of the chunk to show.\n- `'rel'`: Relative path\n- `'abs'`: Absolute path\n- `'name'`: Filename\n","maintainers":[{"name":"chrisgreeff","email":"chris.r.greeff@gmail.com"}],"time":{"modified":"2022-06-18T17:28:52.603Z","created":"2014-08-03T04:44:41.545Z","0.0.1":"2014-08-03T04:44:41.545Z","0.0.2":"2014-08-03T04:53:11.085Z"},"homepage":"https://github.com/chrisgreeff/gulp-logger","keywords":["gulp","gulpplugin","log","logger","debug","output","progress"],"repository":{"type":"git","url":"https://github.com/chrisgreeff/gulp-logger.git"},"author":{"name":"Chris Greeff"},"bugs":{"url":"https://github.com/chrisgreeff/gulp-logger/issues"},"license":"ISC","readmeFilename":"README.md","users":{"monolithed":true,"uniquevn":true,"narven":true,"jacks":true,"glebec":true,"kwesi":true}}