mirror of
https://github.com/actions/labeler.git
synced 2025-12-28 13:57:26 +08:00
build
This commit is contained in:
34
node_modules/sisteransi/package.json
generated
vendored
34
node_modules/sisteransi/package.json
generated
vendored
@@ -1,33 +1,27 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
"sisteransi@1.0.2",
|
||||
"/Users/pjquirk/Source/GitHub/actions/labeler"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "sisteransi@1.0.2",
|
||||
"_id": "sisteransi@1.0.2",
|
||||
"_from": "sisteransi@^1.0.4",
|
||||
"_id": "sisteransi@1.0.5",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-ZcYcZcT69nSLAR2oLN2JwNmLkJEKGooFMCdvOkFrToUt/WfcRWqhIg4P4KwY4dmLbuyXIx4o4YmPsvMRJYJd/w==",
|
||||
"_integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
|
||||
"_location": "/sisteransi",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "sisteransi@1.0.2",
|
||||
"raw": "sisteransi@^1.0.4",
|
||||
"name": "sisteransi",
|
||||
"escapedName": "sisteransi",
|
||||
"rawSpec": "1.0.2",
|
||||
"rawSpec": "^1.0.4",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.0.2"
|
||||
"fetchSpec": "^1.0.4"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/prompts"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.2.tgz",
|
||||
"_spec": "1.0.2",
|
||||
"_where": "/Users/pjquirk/Source/GitHub/actions/labeler",
|
||||
"_resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
|
||||
"_shasum": "134d681297756437cc05ca01370d3a7a571075ed",
|
||||
"_spec": "sisteransi@^1.0.4",
|
||||
"_where": "/Users/dakale/dev/GitHub/actions/labeler/node_modules/prompts",
|
||||
"author": {
|
||||
"name": "Terkel Gjervig",
|
||||
"email": "terkel@terkel.com",
|
||||
@@ -36,10 +30,12 @@
|
||||
"bugs": {
|
||||
"url": "https://github.com/terkelg/sisteransi/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"deprecated": false,
|
||||
"description": "ANSI escape codes for some terminal swag",
|
||||
"devDependencies": {
|
||||
"tap-spec": "^5.0.0",
|
||||
"tape": "^4.9.0"
|
||||
"tape": "^4.13.2"
|
||||
},
|
||||
"files": [
|
||||
"src"
|
||||
@@ -63,5 +59,5 @@
|
||||
"test": "tape test/*.js | tap-spec"
|
||||
},
|
||||
"types": "./src/sisteransi.d.ts",
|
||||
"version": "1.0.2"
|
||||
"version": "1.0.5"
|
||||
}
|
||||
|
||||
22
node_modules/sisteransi/src/sisteransi.d.ts
generated
vendored
22
node_modules/sisteransi/src/sisteransi.d.ts
generated
vendored
@@ -8,19 +8,19 @@ export namespace cursor {
|
||||
export const save: string;
|
||||
export const restore: string;
|
||||
|
||||
export function to(x: number, y: number): string;
|
||||
export function to(x: number, y?: number): string;
|
||||
export function move(x: number, y: number): string;
|
||||
export function up(count: number): string;
|
||||
export function down(count: number): string;
|
||||
export function forward(count: number): string;
|
||||
export function backward(count: number): string;
|
||||
export function nextLine(count: number): string;
|
||||
export function prevLine(count: number): string;
|
||||
export function up(count?: number): string;
|
||||
export function down(count?: number): string;
|
||||
export function forward(count?: number): string;
|
||||
export function backward(count?: number): string;
|
||||
export function nextLine(count?: number): string;
|
||||
export function prevLine(count?: number): string;
|
||||
}
|
||||
|
||||
export namespace scroll {
|
||||
export function up(count: number): string;
|
||||
export function down(count: number): string;
|
||||
export function up(count?: number): string;
|
||||
export function down(count?: number): string;
|
||||
}
|
||||
|
||||
export namespace erase {
|
||||
@@ -29,7 +29,7 @@ export namespace erase {
|
||||
export const lineEnd: string;
|
||||
export const lineStart: string;
|
||||
|
||||
export function up(count: number): string;
|
||||
export function down(count: number): string;
|
||||
export function up(count?: number): string;
|
||||
export function down(count?: number): string;
|
||||
export function lines(count: number): string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user