mytools-tasks 0.2.1 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -0
- package/dist/525.index.js +452 -0
- package/dist/apps/tasks/index.d.ts +2 -0
- package/dist/apps/tasks/index.d.ts.map +1 -0
- package/dist/apps/tasks/jira-provider.d.ts +8 -0
- package/dist/apps/tasks/jira-provider.d.ts.map +1 -0
- package/dist/index.js +5 -1
- package/dist/node_modules/.pnpm/picocolors@1.0.0/node_modules/picocolors/types.d.ts +30 -0
- package/dist/node_modules/.pnpm/picocolors@1.0.0/node_modules/picocolors/types.d.ts.map +1 -0
- package/package.json +6 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.d.ts.map +0 -1
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export type Formatter = (input: string | number | null | undefined) => string;
|
|
2
|
+
export interface Colors {
|
|
3
|
+
isColorSupported: boolean;
|
|
4
|
+
reset: Formatter;
|
|
5
|
+
bold: Formatter;
|
|
6
|
+
dim: Formatter;
|
|
7
|
+
italic: Formatter;
|
|
8
|
+
underline: Formatter;
|
|
9
|
+
inverse: Formatter;
|
|
10
|
+
hidden: Formatter;
|
|
11
|
+
strikethrough: Formatter;
|
|
12
|
+
black: Formatter;
|
|
13
|
+
red: Formatter;
|
|
14
|
+
green: Formatter;
|
|
15
|
+
yellow: Formatter;
|
|
16
|
+
blue: Formatter;
|
|
17
|
+
magenta: Formatter;
|
|
18
|
+
cyan: Formatter;
|
|
19
|
+
white: Formatter;
|
|
20
|
+
gray: Formatter;
|
|
21
|
+
bgBlack: Formatter;
|
|
22
|
+
bgRed: Formatter;
|
|
23
|
+
bgGreen: Formatter;
|
|
24
|
+
bgYellow: Formatter;
|
|
25
|
+
bgBlue: Formatter;
|
|
26
|
+
bgMagenta: Formatter;
|
|
27
|
+
bgCyan: Formatter;
|
|
28
|
+
bgWhite: Formatter;
|
|
29
|
+
}
|
|
30
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["file:///Users/daviddiaz/Code/Private/my-tools/node_modules/.pnpm/picocolors@1.0.0/node_modules/picocolors/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,SAAS,GAAG,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,SAAS,KAAK,MAAM,CAAA;AAE7E,MAAM,WAAW,MAAM;IACtB,gBAAgB,EAAE,OAAO,CAAA;IACzB,KAAK,EAAE,SAAS,CAAA;IAChB,IAAI,EAAE,SAAS,CAAA;IACf,GAAG,EAAE,SAAS,CAAA;IACd,MAAM,EAAE,SAAS,CAAA;IACjB,SAAS,EAAE,SAAS,CAAA;IACpB,OAAO,EAAE,SAAS,CAAA;IAClB,MAAM,EAAE,SAAS,CAAA;IACjB,aAAa,EAAE,SAAS,CAAA;IACxB,KAAK,EAAE,SAAS,CAAA;IAChB,GAAG,EAAE,SAAS,CAAA;IACd,KAAK,EAAE,SAAS,CAAA;IAChB,MAAM,EAAE,SAAS,CAAA;IACjB,IAAI,EAAE,SAAS,CAAA;IACf,OAAO,EAAE,SAAS,CAAA;IAClB,IAAI,EAAE,SAAS,CAAA;IACf,KAAK,EAAE,SAAS,CAAA;IAChB,IAAI,EAAE,SAAS,CAAA;IACf,OAAO,EAAE,SAAS,CAAA;IAClB,KAAK,EAAE,SAAS,CAAA;IAChB,OAAO,EAAE,SAAS,CAAA;IAClB,QAAQ,EAAE,SAAS,CAAA;IACnB,MAAM,EAAE,SAAS,CAAA;IACjB,SAAS,EAAE,SAAS,CAAA;IACpB,MAAM,EAAE,SAAS,CAAA;IACjB,OAAO,EAAE,SAAS,CAAA;CAClB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mytools-tasks",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"bin": {
|
|
5
5
|
"tasks": "./dist/index.js"
|
|
6
6
|
},
|
|
@@ -11,11 +11,16 @@
|
|
|
11
11
|
"@types/node": "^20.5.1",
|
|
12
12
|
"@types/prompts": "2.4.4",
|
|
13
13
|
"@vercel/ncc": "0.36.1",
|
|
14
|
+
"node-fetch": "3.3.2",
|
|
15
|
+
"picocolors": "1.0.0",
|
|
14
16
|
"prompts": "2.4.2",
|
|
15
17
|
"simple-git": "3.19.1",
|
|
16
18
|
"@mytools/tsconfig": "0.0.0",
|
|
17
19
|
"eslint-config-mytools": "0.0.0"
|
|
18
20
|
},
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": ">=18.16.0"
|
|
23
|
+
},
|
|
19
24
|
"scripts": {
|
|
20
25
|
"clean": "rm -rf node_modules && rm -rf dist",
|
|
21
26
|
"dev": "ncc build ./index.ts -w -o dist/",
|
package/dist/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"","sourceRoot":"","sources":["file:///Users/daviddiaz/Code/Private/my-tools/apps/tasks/index.ts"],"names":[],"mappings":""}
|