nodezoo / nodezoo-web

nodezoo.com front end
MIT License
12 stars 61 forks source link

should not be using uppercase in filenames #54

Closed AdrianRossouw closed 8 years ago

AdrianRossouw commented 8 years ago

Mac and windows are case insensitive, but linux cares about case deeply.

This is why the following line in client/containers/info.js was only breaking when i was trying to build docker containers with it.

import {TravisInfo} from '../components/TravisInfo'

The filename was components/travisInfo.js, which would work everywhere but on linux.

The node way (tm) to do this is to name the file components/travis-info.js.

mcdonnelldean commented 8 years ago

@CodeWriterWriter simple start :D

AdrianRossouw commented 8 years ago

so the task is to rename the files in git, and change all the requires over.