Skip to content

Commit 545bf8b

Browse files
committed
Rename app.ts to server.ts to see if azure deployment is convention based on start file name.
1 parent befb69b commit 545bf8b

7 files changed

+8
-10
lines changed

Diff for: app.js.map

-1
This file was deleted.
File renamed without changes.
File renamed without changes.

Diff for: express/server.js.map

-1
This file was deleted.

Diff for: app.js renamed to server.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var config = require("./Config/config");
22
var fetcher = require("./Lib/fetcher");
3-
var express = require("./express/server");
3+
var express = require("./express/express-server");
44

55
var index = require('./routes/index');
66

Diff for: app.ts renamed to server.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import config = require('Config/config');
22
import fetcher = require('Lib/fetcher');
3-
import express = require('express/server');
3+
import express = require('express/express-server');
44

55
import index = module('./routes/index');
66

Diff for: trello-agile-radiator.csproj

+6-6
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,15 @@
5656
<TypeScriptModuleKind>CommonJS</TypeScriptModuleKind>
5757
</PropertyGroup>
5858
<ItemGroup>
59-
<TypeScriptCompile Include="app.ts" />
59+
<TypeScriptCompile Include="server.ts" />
6060
</ItemGroup>
6161
<ItemGroup>
6262
<Content Include="Config\config.js">
6363
<DependentUpon>config.ts</DependentUpon>
6464
</Content>
65-
<TypeScriptCompile Include="express\server.ts" />
66-
<Content Include="express\server.js">
67-
<DependentUpon>server.ts</DependentUpon>
65+
<TypeScriptCompile Include="express\express-server.ts" />
66+
<Content Include="express\express-server.js">
67+
<DependentUpon>express-server.ts</DependentUpon>
6868
</Content>
6969
<Content Include="Lib\fetcher.js">
7070
<DependentUpon>fetcher.ts</DependentUpon>
@@ -702,8 +702,8 @@
702702
</Content>
703703
<TypeScriptCompile Include="Lib\fetcher.ts" />
704704
<TypeScriptCompile Include="Config\config.ts" />
705-
<Content Include="app.js">
706-
<DependentUpon>app.ts</DependentUpon>
705+
<Content Include="server.js">
706+
<DependentUpon>server.ts</DependentUpon>
707707
</Content>
708708
</ItemGroup>
709709
<ItemGroup>

0 commit comments

Comments
 (0)