2 Commits

Author SHA1 Message Date
8925f29962 2.0.1 2018-07-25 16:58:51 +02:00
2e862d6840 fix(package): update tslint 2018-07-25 16:58:51 +02:00
4 changed files with 11 additions and 4 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "smartinteract", "name": "smartinteract",
"version": "2.0.0", "version": "2.0.1",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,7 +1,7 @@
{ {
"name": "@pushrocks/smartinteract", "name": "@pushrocks/smartinteract",
"private": false, "private": false,
"version": "2.0.0", "version": "2.0.1",
"description": "smart cli interaction", "description": "smart cli interaction",
"main": "dist/index.js", "main": "dist/index.js",
"typings": "dist/index.d.ts", "typings": "dist/index.d.ts",

View File

@ -15,6 +15,9 @@ export type questionType =
| 'password' | 'password'
| 'editor'; | 'editor';
/**
* a choice
*/
export interface IChoiceObject { export interface IChoiceObject {
name: string; name: string;
value: any; value: any;

View File

@ -1,3 +1,7 @@
{ {
"extends": "tslint-config-standard" "extends": ["tslint:latest", "tslint-config-prettier"],
"rules": {
"semicolon": [true, "always"]
} }
}