first commit

This commit is contained in:
s.golasch
2023-08-01 13:49:46 +02:00
commit 1fc239fd54
20238 changed files with 3112246 additions and 0 deletions

33
build/node_modules/logalot/README.md generated vendored Normal file
View File

@@ -0,0 +1,33 @@
# logalot [![Build Status](http://img.shields.io/travis/imagemin/logalot.svg?style=flat)](https://travis-ci.org/imagemin/logalot)
> Tiny log utility
## Install
```sh
$ npm install --save logalot
```
## Usage
```js
var log = require('logalot');
log.info('this is a message');
log.warn('this is a warning');
log.success('this is a success message');
log.error(new Error('this is a error').stack);
/*
this is a message
⚠ this is a warning
✔ this is a success message
✖ Error: this is an error
at ChildProcess.exithandler (child_process.js:648:15)
at ChildProcess.emit (events.js:98:17)
*/
```
## License
MIT © [imagemin](https://github.com/imagemin)