Add bower, update gruntfile, bump version

This commit is contained in:
Kegan Myers 2014-02-26 13:37:56 -06:00
parent 6e8ffff25d
commit 3893e2566e
4 changed files with 27 additions and 3 deletions

View File

@ -12,7 +12,7 @@ module.exports = function (grunt) {
}
}
}
});
grunt.registerTask('default', ['typescript']);
};

View File

@ -11,8 +11,8 @@ Usage
Todo
----
- More robust error handling
- Bower integration
- Documentation
- Testing
Changelog
---------

24
bower.json Normal file
View File

@ -0,0 +1,24 @@
{
"name": "Typertext",
"version": "0.1.2",
"homepage": "https://github.com/terribleplan/Typertext",
"authors": [
"Kegan Myers <kegan@keganmyers.com>"
],
"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"
]
}

View File

@ -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"