From 3893e2566e63e3190adb812c90ca1f7ec6d280c6 Mon Sep 17 00:00:00 2001 From: Kegan Myers Date: Wed, 26 Feb 2014 13:37:56 -0600 Subject: [PATCH] Add bower, update gruntfile, bump version --- Gruntfile.js | 2 +- README.md | 2 +- bower.json | 24 ++++++++++++++++++++++++ package.json | 2 +- 4 files changed, 27 insertions(+), 3 deletions(-) create mode 100644 bower.json diff --git a/Gruntfile.js b/Gruntfile.js index 65a5f0f..8c9c488 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -12,7 +12,7 @@ module.exports = function (grunt) { } } } - }); + grunt.registerTask('default', ['typescript']); }; \ No newline at end of file diff --git a/README.md b/README.md index 5fcf4de..77bfb7f 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,8 @@ Usage Todo ---- - More robust error handling -- Bower integration - Documentation +- Testing Changelog --------- diff --git a/bower.json b/bower.json new file mode 100644 index 0000000..3f2c90e --- /dev/null +++ b/bower.json @@ -0,0 +1,24 @@ +{ + "name": "Typertext", + "version": "0.1.2", + "homepage": "https://github.com/terribleplan/Typertext", + "authors": [ + "Kegan Myers " + ], + "description": "A simple TypeScript HTTP request library", + "main": "build/typertext.js", + "keywords": [ + "http", + "request", + "typescript", + "json" + ], + "license": "MIT", + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "tests" + ] +} diff --git a/package.json b/package.json index 5b9e4d9..4e7490d 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "type" : "git", "url" : "https://github.com/terribleplan/Typertext.git" }, - "version": "0.1.1", + "version": "0.1.2", "devDependencies": { "grunt": "~0.4.2", "grunt-typescript": "~0.2.7"