Skip to content

Commit f8deae3

Browse files
Kenneth Shawskellock
Kenneth Shaw
authored andcommitted
reactotron-app: fix case sensitive file paths (infinitered#170)
This fixes the incorrect case in a few file paths that prevented electron/webpack from loading files on case sensitive file systems (ie, those on Unix systems).
1 parent 8d34389 commit f8deae3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

packages/reactotron-app/App/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react'
22
import { render } from 'react-dom'
33
import App from './Foundation/App'
4-
import './App.global.css'
4+
import './app.global.css'
55
import injectTapEventPlugin from 'react-tap-event-plugin'
66
injectTapEventPlugin()
77

packages/reactotron-app/main.development.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ app.on('ready', () => {
3030
menuItem.checked = nextValue
3131
}
3232

33-
mainWindow.loadURL(`file://${__dirname}/App/App.html`)
33+
mainWindow.loadURL(`file://${__dirname}/App/app.html`)
3434

3535
mainWindow.webContents.on('did-finish-load', () => {
3636
mainWindow.show()

packages/reactotron-app/webpack.config.development.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const config = {
1010

1111
entry: [
1212
'webpack-hot-middleware/client?path=http://localhost:3001/__webpack_hmr',
13-
'./App/Index'
13+
'./App/index'
1414
],
1515

1616
output: {

packages/reactotron-app/webpack.config.production.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const config = {
77

88
devtool: 'source-map',
99

10-
entry: './App/Index',
10+
entry: './App/index',
1111

1212
output: {
1313
...baseConfig.output,

0 commit comments

Comments
 (0)