diff --git a/README.md b/README.md index a89b764..100ef8f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,10 @@ +# editor-theme-generator + +An early proof of concept of a program that can generate theme files for editors (well anything really), based on a set of colors. The benefit of this is that instead of building a new .tmTheme for example, there can be a single source of truth. This single source of truth could work out all the kinks for various languages for each editor and its grammar such that when someone wants to create a new editor would do is to just fill in the colors they want. Instead of further fragmenting the tmTheme situation by creating or forking a theme. + +## Usage + ```bash -typings install npm run build -``` \ No newline at end of file +npm start +``` diff --git a/package.json b/package.json index 85188ef..454b2cb 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,6 @@ }, "devDependencies": { "@types/node": "^6.0.41", - "typescript": "^2.0.3", - "typings": "^1.4.0" + "typescript": "^2.0.3" } } diff --git a/src/index.ts b/src/index.ts index a3623f2..f17ee31 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,3 @@ -/// - import * as fs from 'fs'; import * as path from 'path'; import { IColorSet } from './themeGenerator' diff --git a/typings.json b/typings.json deleted file mode 100644 index 69ef9f8..0000000 --- a/typings.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "name": "theme-generator", - "globalDependencies": { - "node": "registry:env/node#6.0.0+20160918225031" - } -}