mirror of
https://github.com/morhetz/gruvbox.git
synced 2025-11-18 00:03:38 -05:00
chore(package): re-init package with commitizen and standard-release
This commit is contained in:
10
node_modules/listr-silent-renderer/index.js
generated
vendored
Normal file
10
node_modules/listr-silent-renderer/index.js
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
'use strict';
|
||||
class SilentRenderer {
|
||||
static get nonTTY() {
|
||||
return true;
|
||||
}
|
||||
render() { }
|
||||
end() { }
|
||||
}
|
||||
|
||||
module.exports = SilentRenderer;
|
||||
21
node_modules/listr-silent-renderer/license
generated
vendored
Normal file
21
node_modules/listr-silent-renderer/license
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) Sam Verschueren <sam.verschueren@gmail.com> (github.com/SamVerschueren)
|
||||
|
||||
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.
|
||||
36
node_modules/listr-silent-renderer/package.json
generated
vendored
Normal file
36
node_modules/listr-silent-renderer/package.json
generated
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "listr-silent-renderer",
|
||||
"version": "1.1.1",
|
||||
"description": "Supress Listr rendering output",
|
||||
"license": "MIT",
|
||||
"repository": "SamVerschueren/listr-silent-renderer",
|
||||
"author": {
|
||||
"name": "Sam Verschueren",
|
||||
"email": "sam.verschueren@gmail.com",
|
||||
"url": "github.com/SamVerschueren"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=4"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"keywords": [
|
||||
"listr",
|
||||
"silent",
|
||||
"renderer",
|
||||
"render",
|
||||
"supress",
|
||||
"nooutput"
|
||||
],
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"xo": "*"
|
||||
},
|
||||
"xo": {
|
||||
"esnext": true
|
||||
}
|
||||
}
|
||||
41
node_modules/listr-silent-renderer/readme.md
generated
vendored
Normal file
41
node_modules/listr-silent-renderer/readme.md
generated
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
# listr-silent-renderer [](https://travis-ci.org/SamVerschueren/listr-silent-renderer)
|
||||
|
||||
> Suppress [Listr](https://github.com/SamVerschueren/listr) rendering output
|
||||
|
||||
|
||||
## Install
|
||||
|
||||
```
|
||||
$ npm install --save listr-silent-renderer
|
||||
```
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
const SilentRenderer = require('listr-silent-renderer');
|
||||
const Listr = require('listr');
|
||||
|
||||
const list = new Listr([
|
||||
{
|
||||
title: 'foo',
|
||||
task: () => Promise.resolve('bar')
|
||||
}
|
||||
], {
|
||||
renderer: SilentRenderer
|
||||
});
|
||||
|
||||
list.run();
|
||||
```
|
||||
|
||||
|
||||
## Related
|
||||
|
||||
- [listr](https://github.com/SamVerschueren/listr) - Terminal task list
|
||||
- [listr-update-renderer](https://github.com/SamVerschueren/listr-update-renderer) - Listr update renderer
|
||||
- [listr-verbose-renderer](https://github.com/SamVerschueren/listr-verbose-renderer) - Listr verbose renderer
|
||||
|
||||
|
||||
## License
|
||||
|
||||
MIT © [Sam Verschueren](https://github.com/SamVerschueren)
|
||||
Reference in New Issue
Block a user