From cc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Wed, 27 Mar 2019 21:01:33 +0100 Subject: remove node_modules --- node_modules/gulplog/CHANGELOG.md | 10 ----- node_modules/gulplog/LICENSE | 22 ----------- node_modules/gulplog/README.md | 79 --------------------------------------- node_modules/gulplog/index.js | 7 ---- node_modules/gulplog/package.json | 34 ----------------- 5 files changed, 152 deletions(-) delete mode 100644 node_modules/gulplog/CHANGELOG.md delete mode 100644 node_modules/gulplog/LICENSE delete mode 100644 node_modules/gulplog/README.md delete mode 100644 node_modules/gulplog/index.js delete mode 100644 node_modules/gulplog/package.json (limited to 'node_modules/gulplog') 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 @@ -

- - - -

- -# 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 (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" - ] -} -- cgit v1.2.3