Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
8925f29962 | |||
2e862d6840 |
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "smartinteract",
|
||||
"version": "2.0.0",
|
||||
"version": "2.0.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@pushrocks/smartinteract",
|
||||
"private": false,
|
||||
"version": "2.0.0",
|
||||
"version": "2.0.1",
|
||||
"description": "smart cli interaction",
|
||||
"main": "dist/index.js",
|
||||
"typings": "dist/index.d.ts",
|
||||
|
@ -15,6 +15,9 @@ export type questionType =
|
||||
| 'password'
|
||||
| 'editor';
|
||||
|
||||
/**
|
||||
* a choice
|
||||
*/
|
||||
export interface IChoiceObject {
|
||||
name: string;
|
||||
value: any;
|
||||
|
@ -1,3 +1,7 @@
|
||||
{
|
||||
"extends": "tslint-config-standard"
|
||||
}
|
||||
"extends": ["tslint:latest", "tslint-config-prettier"],
|
||||
"rules": {
|
||||
"semicolon": [true, "always"]
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user