bumanerdene / pomodoro-react

Pomodoro timer and task list manager, written in React. A best way to boost your productivity.
9 stars 1 forks source link

File naming discrepancy #4

Closed larilampen closed 6 years ago

larilampen commented 6 years ago

One of the source files is named addTask.js. In the main app file you have this line:

import {AddTask} from './AddTask.js';

This works on Windows and (the default config of) OS X, but in case-sensitive filesystems like on Linux, the file is not found due to the discrepancy in naming (capital A vs. lower case a).

To fix the issue, you could either change the line, or rename the file. Based on AirBNB's React style guide, filenames should use PascalCase and hence the preferred remedy is to rename the file addTask.js to AddTask.js.

bumanerdene commented 6 years ago

Thank u for your feedback :)