Skip to content

Commit d602b53

Browse files
committed
- update typings version to latest stable release
- cleanup some more xomnium references
1 parent 7cbf694 commit d602b53

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

app/app.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../typings/browser.d.ts"/>
1+
/// <reference path="../typings/index.d.ts"/>
22

33
namespace App {
44
import Config = App.Config;

app/repository/repository.module.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../../typings/browser.d.ts" />
1+
/// <reference path="../../typings/index.d.ts" />
22

33
namespace Repository {
44
angular

app/service/service.module.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
/// <reference path="../../typings/browser.d.ts" />
1+
/// <reference path="../../typings/index.d.ts" />
22

33
namespace Services {
44
angular
55
.module('app.services', [])
6-
.service('SessionService', Services.SessionService);;
6+
.service('SessionService', Services.SessionService);
77
}

app/ui/components/components.module.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../../../typings/browser.d.ts" />
1+
/// <reference path="../../../typings/index.d.ts" />
22

33
namespace UI.Components {
44
angular

app/ui/mediators/mediators.module.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../../../typings/browser.d.ts" />
1+
/// <reference path="../../../typings/index.d.ts" />
22

33
namespace UI.Mediators {
44
angular

app/ui/pages/feature-1/feature-1.module.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference path="../../../../typings/browser.d.ts" />
1+
/// <reference path="../../../../typings/index.d.ts" />
22

33
namespace UI.Pages.Feature1 {
44
angular

config/constants/constants.config.dev.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace XOmniumWebClient.Constants {
1+
namespace App {
22
export class Config {
33
public static SERVER_URL = 'http://localhost:3000';
44
}
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
namespace XOmniumWebClient.Constants {
1+
namespace App {
22
export class Config {
3-
public static SERVER_URL = '';
3+
public static SERVER_URL = 'production.server.com:2112';
44
}
55
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
"bower": "^1.7.9",
1515
"concurrently": "^2.0.0",
1616
"less": "^2.6.1",
17-
"typings": "^0.8.1"
17+
"typings": "^1.0.4"
1818
}
1919
}

typings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"ambientDependencies": {
2+
"globalDependencies": {
33
"angular": "registry:dt/angular#1.5.0+20160412133217",
44
"angular-material": "registry:dt/angular-material#1.0.0-rc5.0+20160317120654",
55
"angular-route": "registry:dt/angular-route#1.3.0+20160317120654",

0 commit comments

Comments
 (0)