Take typings out of build

This commit is contained in:
Daniel Imms
2016-10-01 14:59:29 -07:00
parent bf4f63a0e6
commit 9e397f5ed3
3 changed files with 2 additions and 8 deletions

View File

@@ -1,3 +1,4 @@
```bash
typings install
npm run build
```

View File

@@ -4,7 +4,7 @@
"description": "Generates editor/terminal themes using a set of colors",
"main": "dist/index.js",
"scripts": {
"build": "typings install && tsc",
"build": "tsc",
"start": "node dist/index.js"
},
"author": "Tyriar",

View File

@@ -22,13 +22,6 @@ export interface IColorSet {
background?: string;
foreground?: string;
}
/*uiGroups?: {
userActionNeeded?: string;
userCurrentState?: string;
backgroundState?: string;
background?: string;
foreground?: string;
}*/
}
export interface IAnsiColorSet {