{"versions":{"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":"anonymous","email":"chris.r.greeff@gmail.com"},"maintainers":[{"name":"anonymous","email":"chris.r.greeff@gmail.com"}],"dist":{"shasum":"0ec000bf91e8cae424305da0f9057af3158332b0","size":4524,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/gulp-logger/-/gulp-logger-0.0.2.tgz"},"directories":{},"publish_time":1407041591085,"_cnpm_publish_time":1407041591085,"_hasShrinkwrap":false,"contributors":[]},"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":"anonymous","email":"chris.r.greeff@gmail.com"},"maintainers":[{"name":"anonymous","email":"chris.r.greeff@gmail.com"}],"dist":{"shasum":"ef64d98683855e07e2ef6f844fd539cd59c050c0","size":69004,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/gulp-logger/-/gulp-logger-0.0.1.tgz"},"directories":{},"publish_time":1407041081545,"_cnpm_publish_time":1407041081545,"_hasShrinkwrap":false,"contributors":[]}},"dist-tags":{"latest":"0.0.2"},"name":"gulp-logger","time":{"modified":"2022-01-26T14:55:49.244Z","created":"2022-01-26T14:55:49.244Z","0.0.2":"2014-08-03T04:53:11.085Z","0.0.1":"2014-08-03T04:44:41.545Z"},"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","users":{}}