Skip to content

Commit

Permalink
chore(plugin-inquirer): initial plugin-inquirer module
Browse files Browse the repository at this point in the history
link #14
  • Loading branch information
Zhengqbbb committed Apr 24, 2022
1 parent bb1408e commit ef27c0a
Show file tree
Hide file tree
Showing 8 changed files with 57 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/@cz-git/plugin-inquirer/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# @cz-git/inquirer

> provide cz-git inquirer plugins, include search-list, search-checkbox
38 changes: 38 additions & 0 deletions packages/@cz-git/plugin-inquirer/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"name": "@cz-git/inquirer",
"version": "1.2.5",
"description": "provide cz-git inquirer plugins, include search-list, search-checkbox",
"keywords": [
"cz-git",
"inquirer",
"inquirer-search-list",
"inquirer-search-checkbox"
],
"homepage": "https://github.com/Zhengqbbb/cz-git/tree/main/packages/%40cz-git/plugin-inquirer",
"bugs": {
"url": "https://github.com/Zhengqbbb/cz-git/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zhengqbbb/cz-git.git",
"directory": "packages/@cz-git/plugin-inquirer"
},
"license": "MIT",
"author": "Zhengqbbb <1074059947@qq.com>",
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"scripts": {
"build": "yarn clean && tsc -b",
"clean": "rimraf *.tsbuildinfo lib",
"dev": "tsc -b --watch"
},
"publishConfig": {
"access": "public"
}
}
1 change: 1 addition & 0 deletions packages/@cz-git/plugin-inquirer/src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log("Hello, world!");
3 changes: 3 additions & 0 deletions packages/@cz-git/plugin-inquirer/tsconfig.base.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "../../../tsconfig.base.json",
}
9 changes: 9 additions & 0 deletions packages/@cz-git/plugin-inquirer/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./lib"
},
"include": ["./src"],
"exclude": ["./lib/**/*"]
}
1 change: 1 addition & 0 deletions packages/cz-git/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"dev": "tsc -b --watch"
},
"dependencies": {
"@cz-git/inquirer": "1.2.5",
"@cz-git/loader": "1.2.5",
"inquirer": "^7.3.3",
"inquirer-autocomplete-prompt": "1.4.0",
Expand Down
1 change: 1 addition & 0 deletions packages/cz-git/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
},
"references": [
{ "path": "../@cz-git/plugin-loader/tsconfig.json" },
{ "path": "../@cz-git/plugin-inquirer/tsconfig.json" },
]
}
1 change: 1 addition & 0 deletions tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"references": [
{ "path": "./packages/cz-git/tsconfig.json" },
{ "path": "./packages/@cz-git/plugin-loader/tsconfig.json" },
{ "path": "./packages/@cz-git/plugin-inquirer/tsconfig.json" },
],
"files": []
}

0 comments on commit ef27c0a

Please # to comment.