Switch to FUI nightly

This commit is contained in:
Jay Trees 2022-04-07 09:06:43 +02:00
parent 0ea1ad469d
commit ec5b6c905c
6595 changed files with 171884 additions and 136424 deletions

13
node_modules/restore-cursor/index.d.ts generated vendored Normal file
View file

@ -0,0 +1,13 @@
/**
Gracefully restore the CLI cursor on exit.
@example
```
import restoreCursor = require('restore-cursor');
restoreCursor();
```
*/
declare function restoreCursor(): void;
export = restoreCursor;

View file

@ -4,6 +4,6 @@ const signalExit = require('signal-exit');
module.exports = onetime(() => {
signalExit(() => {
process.stderr.write('\u001b[?25h');
process.stderr.write('\u001B[?25h');
}, {alwaysLast: true});
});

20
node_modules/restore-cursor/license generated vendored
View file

@ -1,21 +1,9 @@
The MIT License (MIT)
MIT License
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
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:
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 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.
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.

View file

@ -1,79 +1,52 @@
{
"_args": [
[
"restore-cursor@2.0.0",
"F:\\laragon\\www\\wishthis"
]
],
"_from": "restore-cursor@2.0.0",
"_id": "restore-cursor@2.0.0",
"_inBundle": false,
"_integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=",
"_location": "/restore-cursor",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "restore-cursor@2.0.0",
"name": "restore-cursor",
"escapedName": "restore-cursor",
"rawSpec": "2.0.0",
"saveSpec": null,
"fetchSpec": "2.0.0"
},
"_requiredBy": [
"/cli-cursor"
],
"_resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz",
"_spec": "2.0.0",
"_where": "F:\\laragon\\www\\wishthis",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"bugs": {
"url": "https://github.com/sindresorhus/restore-cursor/issues"
},
"dependencies": {
"onetime": "^2.0.0",
"signal-exit": "^3.0.2"
},
"description": "Gracefully restore the CLI cursor on exit",
"engines": {
"node": ">=4"
},
"files": [
"index.js"
],
"homepage": "https://github.com/sindresorhus/restore-cursor#readme",
"keywords": [
"exit",
"quit",
"process",
"graceful",
"shutdown",
"sigterm",
"sigint",
"terminate",
"kill",
"stop",
"cli",
"cursor",
"ansi",
"show",
"term",
"terminal",
"console",
"tty",
"shell",
"command-line"
],
"license": "MIT",
"name": "restore-cursor",
"repository": {
"type": "git",
"url": "git+https://github.com/sindresorhus/restore-cursor.git"
},
"version": "2.0.0"
"name": "restore-cursor",
"version": "3.1.0",
"description": "Gracefully restore the CLI cursor on exit",
"license": "MIT",
"repository": "sindresorhus/restore-cursor",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "xo && tsd"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"exit",
"quit",
"process",
"graceful",
"shutdown",
"sigterm",
"sigint",
"terminate",
"kill",
"stop",
"cli",
"cursor",
"ansi",
"show",
"term",
"terminal",
"console",
"tty",
"shell",
"command-line"
],
"dependencies": {
"onetime": "^5.1.0",
"signal-exit": "^3.0.2"
},
"devDependencies": {
"tsd": "^0.7.2",
"xo": "^0.24.0"
}
}

View file

@ -1,4 +1,4 @@
# restore-cursor
# restore-cursor [![Build Status](https://travis-ci.org/sindresorhus/restore-cursor.svg?branch=master)](https://travis-ci.org/sindresorhus/restore-cursor)
> Gracefully restore the CLI cursor on exit
@ -8,7 +8,7 @@ Prevent the cursor you've hidden interactively from remaining hidden if the proc
## Install
```
$ npm install --save restore-cursor
$ npm install restore-cursor
```
@ -16,6 +16,7 @@ $ npm install --save restore-cursor
```js
const restoreCursor = require('restore-cursor');
restoreCursor();
```