aboutsummaryrefslogtreecommitdiff
path: root/node_modules/gulplog
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
commitcc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 (patch)
tree92c5d88706a6ffc654d1b133618d357890e7096b /node_modules/gulplog
parent3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff)
downloadwallet-core-cc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585.tar.xz
remove node_modules
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, 0 insertions, 152 deletions
diff --git a/node_modules/gulplog/CHANGELOG.md b/node_modules/gulplog/CHANGELOG.md
deleted file mode 100644
index 5f84e9bb5..000000000
--- a/node_modules/gulplog/CHANGELOG.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# 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
deleted file mode 100644
index 8ac355493..000000000
--- a/node_modules/gulplog/LICENSE
+++ /dev/null
@@ -1,22 +0,0 @@
-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
deleted file mode 100644
index 484e939e4..000000000
--- a/node_modules/gulplog/README.md
+++ /dev/null
@@ -1,79 +0,0 @@
-<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
deleted file mode 100644
index b92a6466a..000000000
--- a/node_modules/gulplog/index.js
+++ /dev/null
@@ -1,7 +0,0 @@
-'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
deleted file mode 100644
index 047bc7c0f..000000000
--- a/node_modules/gulplog/package.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "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"
- ]
-}