Added Gulp.js for compiling SCSS stylesheets
This commit is contained in:
10
node_modules/gulplog/CHANGELOG.md
generated
vendored
Normal file
10
node_modules/gulplog/CHANGELOG.md
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
# gulplog changelog
|
||||
|
||||
## 1.0.0
|
||||
|
||||
- Initial release
|
||||
- No implementation changed since initial commit
|
||||
|
||||
## 0.0.0
|
||||
|
||||
- Experimentation
|
22
node_modules/gulplog/LICENSE
generated
vendored
Normal file
22
node_modules/gulplog/LICENSE
generated
vendored
Normal file
@ -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.
|
||||
|
79
node_modules/gulplog/README.md
generated
vendored
Normal file
79
node_modules/gulplog/README.md
generated
vendored
Normal file
@ -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
|
7
node_modules/gulplog/index.js
generated
vendored
Normal file
7
node_modules/gulplog/index.js
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
'use strict';
|
||||
|
||||
var getLogger = require('glogg');
|
||||
|
||||
var logger = getLogger('gulplog');
|
||||
|
||||
module.exports = logger;
|
34
node_modules/gulplog/package.json
generated
vendored
Normal file
34
node_modules/gulplog/package.json
generated
vendored
Normal file
@ -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"
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user