for cptName in `ls src/components`
do
  if [ $cptName != "index.js" ]
  then
    echo $cptName
    cpt-cli g $cptName index.js
  fi
done
