Skip to content

Commit c70f9e5

Browse files
committed
adding inquirerer
1 parent bc03c86 commit c70f9e5

File tree

6 files changed

+28
-185
lines changed

6 files changed

+28
-185
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ jobs:
5858
- schema-typescript
5959
- strfy-js
6060
- yanse
61+
- inquirerer
62+
- create-gen-app
6163

6264
steps:
6365
- name: Checkout code

inquirerer.md

Lines changed: 0 additions & 163 deletions
This file was deleted.

packages/create-gen-app/README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,15 @@
55
</p>
66

77
<p align="center" width="100%">
8-
9-
<a href="https://github.com/pyramation/inquirerer/actions/workflows/run-tests.yml">
10-
<img height="20" src="https://github.com/pyramation/inquirerer/actions/workflows/run-tests.yml/badge.svg" />
8+
9+
<a href="https://github.com/hyperweb-io/dev-utils/actions/workflows/ci.yml">
10+
<img height="20" src="https://github.com/hyperweb-io/dev-utils/actions/workflows/ci.yml/badge.svg" />
11+
</a>
12+
<a href="https://github.com/hyperweb-io/dev-utils/blob/main/LICENSE">
13+
<img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"/>
1114
</a>
12-
<a href="https://github.com/pyramation/inquirerer/blob/main/LICENSE"><img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"></a>
13-
<a href="https://www.npmjs.com/package/inquirerer"><img height="20" src="https://img.shields.io/npm/dt/inquirerer"></a>
14-
<a href="https://www.npmjs.com/package/inquirerer"><img height="20" src="https://img.shields.io/github/package-json/v/pyramation/inquirerer?filename=packages%2Finquirerer%2Fpackage.json"></a>
15+
<a href="https://www.npmjs.com/package/create-gen-app"><img height="20" src="https://img.shields.io/npm/dt/create-gen-app"></a>
16+
<a href="https://www.npmjs.com/package/create-gen-app"><img height="20" src="https://img.shields.io/github/package-json/v/hyperweb-io/dev-utils?filename=packages%2Fcreate-gen-app%2Fpackage.json"></a>
1517
</p>
1618

1719
A TypeScript library for cloning and customizing template repositories with variable replacement.

packages/create-gen-app/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,22 @@
66
"main": "index.js",
77
"module": "esm/index.js",
88
"types": "index.d.ts",
9-
"homepage": "https://github.com/pyramation/inquirerer",
9+
"homepage": "https://github.com/hyperweb-io/dev-utils",
1010
"license": "SEE LICENSE IN LICENSE",
1111
"publishConfig": {
1212
"access": "public",
1313
"directory": "dist"
1414
},
1515
"repository": {
1616
"type": "git",
17-
"url": "https://github.com/pyramation/inquirerer"
17+
"url": "https://github.com/hyperweb-io/dev-utils"
1818
},
1919
"bugs": {
20-
"url": "https://github.com/pyramation/inquirerer/issues"
20+
"url": "https://github.com/hyperweb-io/dev-utils/issues"
2121
},
2222
"scripts": {
23-
"copy": "copyfiles -f ../../LICENSE README.md package.json dist",
24-
"clean": "del dist/**",
23+
"copy": "cpy ../../LICENSE README.md package.json dist --flat",
24+
"clean": "rimraf dist/**",
2525
"prepare": "npm run build",
2626
"build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
2727
"dev": "ts-node dev/index",

packages/inquirerer/README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,15 @@
55
</p>
66

77
<p align="center" width="100%">
8-
9-
<a href="https://github.com/pyramation/inquirerer/actions/workflows/run-tests.yml">
10-
<img height="20" src="https://github.com/pyramation/inquirerer/actions/workflows/run-tests.yml/badge.svg" />
8+
9+
<a href="https://github.com/hyperweb-io/dev-utils/actions/workflows/ci.yml">
10+
<img height="20" src="https://github.com/hyperweb-io/dev-utils/actions/workflows/ci.yml/badge.svg" />
11+
</a>
12+
<a href="https://github.com/hyperweb-io/dev-utils/blob/main/LICENSE">
13+
<img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"/>
1114
</a>
12-
<a href="https://github.com/pyramation/inquirerer/blob/main/LICENSE"><img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"></a>
13-
<a href="https://www.npmjs.com/package/inquirerer"><img height="20" src="https://img.shields.io/npm/dt/inquirerer"></a>
14-
<a href="https://www.npmjs.com/package/inquirerer"><img height="20" src="https://img.shields.io/github/package-json/v/pyramation/inquirerer?filename=packages%2Finquirerer%2Fpackage.json"></a>
15+
<a href="https://www.npmjs.com/package/inquirerer"><img height="20" src="https://img.shields.io/npm/dt/inquirerer"></a>
16+
<a href="https://www.npmjs.com/package/inquirerer"><img height="20" src="https://img.shields.io/github/package-json/v/hyperweb-io/dev-utils?filename=packages%2Finquirerer%2Fpackage.json"></a>
1517
</p>
1618

1719
This library is designed to facilitate the creation of command-line utilities by providing a robust framework for capturing user input through interactive prompts. It supports a variety of question types, making it highly flexible and suitable for a wide range of applications.

packages/inquirerer/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,22 @@
66
"main": "index.js",
77
"module": "esm/index.js",
88
"types": "index.d.ts",
9-
"homepage": "https://github.com/pyramation/inquirerer",
9+
"homepage": "https://github.com/hyperweb-io/dev-utils",
1010
"license": "SEE LICENSE IN LICENSE",
1111
"publishConfig": {
1212
"access": "public",
1313
"directory": "dist"
1414
},
1515
"repository": {
1616
"type": "git",
17-
"url": "https://github.com/pyramation/inquirerer"
17+
"url": "https://github.com/hyperweb-io/dev-utils"
1818
},
1919
"bugs": {
20-
"url": "https://github.com/pyramation/inquirerer/issues"
20+
"url": "https://github.com/hyperweb-io/dev-utils/issues"
2121
},
2222
"scripts": {
23-
"copy": "copyfiles -f ../../LICENSE README.md package.json dist",
24-
"clean": "del dist/**",
23+
"copy": "cpy ../../LICENSE README.md package.json dist --flat",
24+
"clean": "rimraf dist/**",
2525
"prepare": "npm run build",
2626
"build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
2727
"dev": "ts-node dev/index",

0 commit comments

Comments
 (0)