Skip to content

Commit 5225d18

Browse files
author
Vladimir Enchev
committed
module merge usage fixed
1 parent 81dfaf8 commit 5225d18

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

application/application.android.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
// merge the exports of the application_common file with the exports of this file
44
declare var exports;
5-
require("utils/module_merge").merge(appModule, exports);
5+
require("utils/module-merge").merge(appModule, exports);
66

77
var callbacks = android.app.Application.ActivityLifecycleCallbacks;
88

application/application.ios.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import appModule = require("application/application_common");
2424

2525
// merge the exports of the application_common file with the exports of this file
2626
declare var exports;
27-
require("utils/module_merge").merge(appModule, exports);
27+
require("utils/module-merge").merge(appModule, exports);
2828

2929
// TODO: Declarations
3030
export var init = function (nativeApp: any) {

http/http.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import http = require("http/http-request");
44

55
// merge request
66
declare var exports;
7-
require("utils/module_merge").merge(http, exports);
7+
require("utils/module-merge").merge(http, exports);
88

99
/**
1010
* Gets string from url.

0 commit comments

Comments
 (0)