Skip to content

Commit 1e6473e

Browse files
committed
more changes for #79
1 parent 0955b02 commit 1e6473e

File tree

16 files changed

+31
-42
lines changed

16 files changed

+31
-42
lines changed

app/templates/_typings_ng2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"ambientDependencies": {
3-
"jasmine": "github:DefinitelyTyped/DefinitelyTyped/jasmine/jasmine.d.ts#dd638012d63e069f2c99d06ef4dcc9616a943ee4"
3+
"jasmine": "registry:dt/jasmine#2.2.0+20160308082659"
44
}
55
}
Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
{
2+
"dependencies": {
3+
"bluebird": "registry:npm/bluebird#3.2.1+20160211005852",
4+
"lodash": "registry:npm/lodash#4.0.0+20160305082308"
5+
},
26
"ambientDependencies": {
3-
"jasmine": "github:DefinitelyTyped/DefinitelyTyped/jasmine/jasmine.d.ts#dd638012d63e069f2c99d06ef4dcc9616a943ee4",
4-
"bluebird": "github:DefinitelyTyped/DefinitelyTyped/bluebird/bluebird.d.ts#dd328830dddffbe19e9addd7cf8532cbd3600816",
5-
"express": "github:DefinitelyTyped/DefinitelyTyped/express/express.d.ts#dd638012d63e069f2c99d06ef4dcc9616a943ee4",
6-
"lodash": "github:DefinitelyTyped/DefinitelyTyped/lodash/lodash-3.10.d.ts#86dbea8fc37d9473fee465da4f0a21bea4f8cbd9",
7-
"mongoose": "github:DefinitelyTyped/DefinitelyTyped/mongoose/mongoose.d.ts#cebde64b3a1d63d07ee7c7dbc49b631ce220d027",
8-
"node": "github:DefinitelyTyped/DefinitelyTyped/node/node.d.ts#aee0039a2d6686ec78352125010ebb38a7a7d743"
7+
"body-parser": "registry:dt/body-parser#0.0.0+20160112113357",
8+
"express": "registry:dt/express#4.0.0+20160208031452",
9+
"helmet": "registry:dt/helmet#0.0.0+20160112163250",
10+
"jasmine": "registry:dt/jasmine#2.2.0+20160308082659",
11+
"mime": "registry:dt/mime#0.0.0+20151204023458",
12+
"mongoose": "registry:dt/mongoose#3.8.5+20160209123716",
13+
"morgan": "registry:dt/morgan#1.2.2+20160104041339",
14+
"node": "registry:dt/node#4.0.0+20160311162451",
15+
"serve-static": "registry:dt/serve-static#0.0.0+20160104095738"
916
}
1017
}
Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
{
2+
"dependencies": {
3+
"bluebird": "registry:npm/bluebird#3.2.1+20160211005852",
4+
"lodash": "registry:npm/lodash#4.0.0+20160305082308"
5+
},
26
"ambientDependencies": {
3-
"bluebird": "github:DefinitelyTyped/DefinitelyTyped/bluebird/bluebird.d.ts#dd328830dddffbe19e9addd7cf8532cbd3600816",
4-
"express": "github:DefinitelyTyped/DefinitelyTyped/express/express.d.ts#dd638012d63e069f2c99d06ef4dcc9616a943ee4",
5-
"lodash": "github:DefinitelyTyped/DefinitelyTyped/lodash/lodash-3.10.d.ts#86dbea8fc37d9473fee465da4f0a21bea4f8cbd9",
6-
"mongoose": "github:DefinitelyTyped/DefinitelyTyped/mongoose/mongoose.d.ts#cebde64b3a1d63d07ee7c7dbc49b631ce220d027",
7-
"node": "github:DefinitelyTyped/DefinitelyTyped/node/node.d.ts#aee0039a2d6686ec78352125010ebb38a7a7d743""
7+
"body-parser": "registry:dt/body-parser#0.0.0+20160112113357",
8+
"express": "registry:dt/express#4.0.0+20160208031452",
9+
"helmet": "registry:dt/helmet#0.0.0+20160112163250",
10+
"jasmine": "registry:dt/jasmine#2.2.0+20160308082659",
11+
"mime": "registry:dt/mime#0.0.0+20151204023458",
12+
"mongoose": "registry:dt/mongoose#3.8.5+20160209123716",
13+
"morgan": "registry:dt/morgan#1.2.2+20160104041339",
14+
"node": "registry:dt/node#4.0.0+20160311162451",
15+
"serve-static": "registry:dt/serve-static#0.0.0+20160104095738"
816
}
917
}

app/templates/server_node_typescript/api/todo/controller/todo-controller.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/// <reference path="../../../../typings/main.d.ts" />
2-
31
import TodoDAO from '../dao/todo-dao';
42

53
export class TodoController {

app/templates/server_node_typescript/api/todo/dao/todo-dao.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/// <reference path="../../../../typings/main.d.ts" />
2-
31
import * as mongoose from 'mongoose';
42
import * as Promise from 'bluebird';
53
import * as _ from 'lodash';

app/templates/server_node_typescript/api/todo/model/todo-model.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/// <reference path="../../../../typings/main.d.ts" />
2-
31
import * as mongoose from 'mongoose';
42

53
const _todoSchema = {

app/templates/server_node_typescript/api/todo/routes/todo-routes.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/// <reference path="../../../../typings/main.d.ts" />
2-
31
"use strict";
42

53
import {TodoController} from '../controller/todo-controller';

app/templates/server_node_typescript/commons/static/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/// <reference path="../../../typings/main.d.ts" />
2-
31
"use strict";
42

53
import * as fs from 'fs';

app/templates/server_node_typescript/config/db.conf.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/// <reference path="../../typings/main.d.ts" />
2-
31
"use strict";
42

53
import * as mongoose from 'mongoose';

app/templates/server_node_typescript/config/routes.conf.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/// <reference path="../../typings/main.d.ts" />
2-
31
"use strict";
42

53
import * as morgan from 'morgan';

0 commit comments

Comments
 (0)