Skip to content

Commit ad05cbc

Browse files
mikeysteeleMarkPieszak
authored andcommitted
fixed file paths for case sensitive filesystems (#193)
🎈🎁
1 parent b84358e commit ad05cbc

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
"types": [ "node" ]
1515
},
1616
"include": [
17-
"client"
17+
"Client"
1818
]
1919
}

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module.exports = function (options, webpackOptions) {
1515
}
1616

1717
const serverConfig = webpackMerge({}, commonPartial, serverPartial, {
18-
entry: options.aot ? { 'main-server' : './client/main.server.aot.ts' } : serverPartial.entry, // Temporary
18+
entry: options.aot ? { 'main-server' : './Client/main.server.aot.ts' } : serverPartial.entry, // Temporary
1919
plugins: [
2020
getAotPlugin('server', !!options.aot)
2121
]

webpack/webpack.aot.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
const { AotPlugin } = require('@ngtools/webpack');
33

44
const tsconfigs = {
5-
client: root('./client/tsconfig.browser.json'),
6-
server: root('./client/tsconfig.server.json')
5+
client: root('./Client/tsconfig.browser.json'),
6+
server: root('./Client/tsconfig.server.json')
77
};
88

99
const aotTsconfigs = {
10-
client: root('./client/tsconfig.browser.json'),
11-
server: root('./client/tsconfig.server.aot.json')
10+
client: root('./Client/tsconfig.browser.json'),
11+
server: root('./Client/tsconfig.server.aot.json')
1212
};
1313

1414
/**

webpack/webpack.client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const clientBundleOutputDir = root('./wwwroot/dist');
88
*/
99
module.exports = {
1010
entry: {
11-
'main-browser': root('./client/main.browser.ts')
11+
'main-browser': root('./Client/main.browser.ts')
1212
},
1313
output: {
1414
path: root('./wwwroot/dist'),

0 commit comments

Comments
 (0)