aboutsummaryrefslogtreecommitdiff
path: root/node_modules/gulplog
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/gulplog')
-rw-r--r--node_modules/gulplog/CHANGELOG.md10
-rw-r--r--node_modules/gulplog/LICENSE22
-rw-r--r--node_modules/gulplog/README.md79
-rw-r--r--node_modules/gulplog/index.js7
-rw-r--r--node_modules/gulplog/package.json34
5 files changed, 152 insertions, 0 deletions
diff --git a/node_modules/gulplog/CHANGELOG.md b/node_modules/gulplog/CHANGELOG.md
new file mode 100644
index 000000000..5f84e9bb5
--- /dev/null
+++ b/node_modules/gulplog/CHANGELOG.md
@@ -0,0 +1,10 @@
+# gulplog changelog
+
+## 1.0.0
+
+- Initial release
+- No implementation changed since initial commit
+
+## 0.0.0
+
+- Experimentation
diff --git a/node_modules/gulplog/LICENSE b/node_modules/gulplog/LICENSE
new file mode 100644
index 000000000..8ac355493
--- /dev/null
+++ b/node_modules/gulplog/LICENSE
@@ -0,0 +1,22 @@
+The MIT License (MIT)
+
+Copyright (c) 2015 Blaine Bublitz, Eric Schoffstall and other contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
diff --git a/node_modules/gulplog/README.md b/node_modules/gulplog/README.md
new file mode 100644
index 000000000..484e939e4
--- /dev/null
+++ b/node_modules/gulplog/README.md
@@ -0,0 +1,79 @@
+<p align="center">
+ <a href="http://gulpjs.com">
+ <img height="257" width="114" src="https://raw.githubusercontent.com/gulpjs/artwork/master/gulp-2x.png">
+ </a>
+</p>
+
+# gulplog
+
+[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Gitter chat][gitter-image]][gitter-url]
+
+Logger for gulp and gulp plugins
+
+## Usage
+
+```js
+var logger = require('gulplog');
+
+// logs strings
+logger.debug('The MOST verbose!');
+logger.info('Some important info');
+logger.warn('All the warnings to you');
+logger.error('OH NO! SOMETHING HAPPENED!');
+
+// supports util.format!
+logger.info('%s style!', 'printf');
+
+// log anything
+logger.debug({ my: 'obj' });
+logger.info([1, 2, 3]);
+```
+
+## API
+
+Logging (and level of logging) is controlled by [`gulp-cli`][gulp-cli-url]
+
+#### logger.debug(msg)
+
+Highest log level. Typically used for debugging purposes.
+
+If the first argument is a string, all arguments are passed to node's
+[`util.format()`][util-format-url] before being emitted.
+
+#### logger.info(msg)
+
+Standard log level. Typically used for user information.
+
+If the first argument is a string, all arguments are passed to node's
+[`util.format()`][util-format-url] before being emitted.
+
+#### logger.warn(msg)
+
+Warning log level. Typically used for warnings.
+
+If the first argument is a string, all arguments are passed to node's
+[`util.format()`][util-format-url] before being emitted.
+
+#### logger.error(msg)
+
+Error log level. Typically used when things went horribly wrong.
+
+If the first argument is a string, all arguments are passed to node's
+[`util.format()`][util-format-url] before being emitted.
+
+## License
+
+MIT
+
+[downloads-image]: http://img.shields.io/npm/dm/gulplog.svg
+[npm-url]: https://npmjs.org/package/gulplog
+[npm-image]: http://img.shields.io/npm/v/gulplog.svg
+
+[travis-url]: https://travis-ci.org/gulpjs/gulplog
+[travis-image]: http://img.shields.io/travis/gulpjs/gulplog.svg
+
+[gitter-url]: https://gitter.im/gulpjs/gulp
+[gitter-image]: https://badges.gitter.im/gulpjs/gulp.png
+
+[gulp-cli-url]: https://github.com/gulpjs/gulp-cli
+[util-format-url]: https://nodejs.org/docs/latest/api/util.html#util_util_format_format
diff --git a/node_modules/gulplog/index.js b/node_modules/gulplog/index.js
new file mode 100644
index 000000000..b92a6466a
--- /dev/null
+++ b/node_modules/gulplog/index.js
@@ -0,0 +1,7 @@
+'use strict';
+
+var getLogger = require('glogg');
+
+var logger = getLogger('gulplog');
+
+module.exports = logger;
diff --git a/node_modules/gulplog/package.json b/node_modules/gulplog/package.json
new file mode 100644
index 000000000..047bc7c0f
--- /dev/null
+++ b/node_modules/gulplog/package.json
@@ -0,0 +1,34 @@
+{
+ "name": "gulplog",
+ "version": "1.0.0",
+ "description": "Logger for gulp and gulp plugins",
+ "author": "Blaine Bublitz <blaine@iceddev.com> (http://iceddev.com)",
+ "contributors": [],
+ "repository": "gulpjs/gulplog",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.10"
+ },
+ "main": "index.js",
+ "files": [
+ "LICENSE",
+ "index.js"
+ ],
+ "scripts": {
+ "test": "eslint index.js && jscs index.js"
+ },
+ "dependencies": {
+ "glogg": "^1.0.0"
+ },
+ "devDependencies": {
+ "eslint": "^1.5.1",
+ "eslint-config-node-style-guide": "^1.0.1",
+ "jscs": "^2.1.1"
+ },
+ "keywords": [
+ "gulp",
+ "gulp-util",
+ "log",
+ "logging"
+ ]
+}