http://devprogress.us/csv-simple-search
npm install
to install dependencies.npm run dev
to start dev server acessible vialocalhost:8080
. Hot-reloading and recompiling should automatically be enabled.npm run build
to build production version (in dist).
- all source files are in
/src
. - new CSS files can be added (if needed) by:
import 'filename.css'
. They will be automatically included in the index.html file with appropriate vendor prefixes added (so no need to add your own). They will still cascade so be careful of naming collisions. - @alexyaseen is happy to answer any React or ES6 questions.
only deploy from master
, and only if all tests are passing
npm run deploy
will automatically runnpm run build
on your current branch and then push the contents of the dist folder to thegh-pages
branch. Running this command will result in a deploy to the live website, so please use caution before running.