|
1 | 1 | # grunt-ts
|
2 | 2 |
|
3 |
| -[](http://travis-ci.org/basarat/grunt-ts) [](http://badge.fury.io/js/grunt-ts) |
| 3 | +[](http://travis-ci.org/grunt-ts/grunt-ts) [](http://badge.fury.io/js/grunt-ts) |
4 | 4 |
|
5 | 5 | Written from scratch TypeScript compiler task for GruntJS. It differs from grunt-typescript which is another excellent [grunt plugin for TypeScript](https://npmjs.org/package/grunt-typescript).
|
6 | 6 |
|
7 | 7 | Following are the reasons why grunt-ts was created:
|
8 | 8 |
|
9 | 9 | - Written in [TypeScript](https://github.com/grunt-ts/grunt-ts/blob/master/tasks/ts.ts)
|
10 | 10 | - Enables a TypeScript development workflow in addition to simple file compilation.
|
11 |
| -- Super simple to update to the [latest version of the TypeScript](https://github.com/basarat/grunt-ts/commit/ffede564f2b20bc4dc207cb1a30dc57db7c44fe5) |
| 11 | +- Super simple to update to the [latest version of the TypeScript](https://github.com/grunt-ts/grunt-ts/commit/ffede564f2b20bc4dc207cb1a30dc57db7c44fe5) |
12 | 12 |
|
13 | 13 | Check how grunt-ts can help streamline front end development: [Sample usage with AngularJS](http://www.youtube.com/watch?v=0-6vT7xgE4Y&hd=1)
|
14 | 14 |
|
15 | 15 | Additional / longer / more basic video tutorial: http://youtu.be/Km0DpfX5ZxM
|
16 | 16 |
|
17 |
| -For a quickstart see the full featured [Gruntfile](https://github.com/basarat/grunt-ts/blob/master/sample/Gruntfile.js). |
| 17 | +For a quickstart see the full featured [Gruntfile](https://github.com/grunt-ts/grunt-ts/blob/master/sample/Gruntfile.js). |
18 | 18 |
|
19 | 19 | ## Following are some key features:
|
20 | 20 |
|
@@ -216,7 +216,7 @@ grunt.initConfig({
|
216 | 216 | build: {
|
217 | 217 | // The source TypeScript files, http://gruntjs.com/configuring-tasks#files
|
218 | 218 | src: ["test/work/**/*.ts"],
|
219 |
| - // The source html files, https://github.com/basarat/grunt-ts#html-2-typescript-support |
| 219 | + // The source html files, https://github.com/grunt-ts/grunt-ts#html-2-typescript-support |
220 | 220 | html: ["test/work/**/*.tpl.html"],
|
221 | 221 | // If specified, generate this file that to can use for reference management
|
222 | 222 | reference: "./test/reference.ts",
|
@@ -259,7 +259,7 @@ It is recommended to add a default target to run in case no arguments to grunt a
|
259 | 259 | grunt.registerTask("default", ["ts:build"]);
|
260 | 260 | ```
|
261 | 261 |
|
262 |
| -For an example of an up-to-date configuration look at the [sample gruntfile](https://github.com/basarat/grunt-ts/blob/master/sample/Gruntfile.js) |
| 262 | +For an example of an up-to-date configuration look at the [sample gruntfile](https://github.com/grunt-ts/grunt-ts/blob/master/sample/Gruntfile.js) |
263 | 263 |
|
264 | 264 | ### Different configurations per target
|
265 | 265 |
|
|
0 commit comments