Skip to content

Commit

Permalink
some improvements for tsd to typings migration. tools removed, now us…
Browse files Browse the repository at this point in the history
…e typings folder
  • Loading branch information
pablorsk committed May 1, 2016
1 parent 309ea11 commit 3ca14f8
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 5,325 deletions.
8 changes: 6 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
node_modules
/node_modules/
.DS_Store
npm-debug.log
/typings/
**/bower_packages

# all generated JS
src/js
src/app/**/*.js
src/app/**/*.js.map

20 changes: 13 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,23 @@
# AngularIn20TypeScript

Simple AngularJS Application with TypeScript, you can view video about typescript and angular in 20 minutes at ngconf 2015 on [youtube](https://www.youtube.com/watch?list=PLOETEcp3DkCoNnlhE-7fovYvqwVPrRiY7&feature=player_embedded&v=U7NYTKgkZgo)

# Usage

* Install global dependencies **if necessary**

npm install -g gulp-cli tsd superstatic
- Install global dependencies **if necessary**

1. Install node packages:
```
npm install -g gulp-cli typings superstatic
```

npm install
- Install node packages:

2. Launch the server
```
npm install
```

npm start
- Launch the server

```
npm start
```
4 changes: 2 additions & 2 deletions gulpfile.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ var GulpConfig = (function () {
this.allJavaScript = [this.source + '/js/**/*.js'];
this.allTypeScript = this.sourceApp + '/**/*.ts';

this.typings = './tools/typings/';
this.libraryTypeScriptDefinitions = './tools/typings/**/*.ts';
this.typings = './typings/';
this.libraryTypeScriptDefinitions = './typings/main/**/*.ts';
}
return gulpConfig;
})();
Expand Down
261 changes: 0 additions & 261 deletions tools/typings/angularjs/angular-animate.d.ts

This file was deleted.

Loading

0 comments on commit 3ca14f8

Please sign in to comment.