This is a sass development environment for WCMIA 2020 website styles
-
Clone this repository.
git clone https://github.com/agnelnieves/wcmia2020.git
-
Navigate into the project's directory and start it up
# navigate to the location where you cloned the repo cd wcmia2020/ # install dependencies (can use yarn or npm) yarn install yarn sass
✍🏻 Contributing:
-
Clone this repository.
git clone https://github.com/agnelnieves/wcmia2020.git
-
Create a new branch, prefixed by
feat
, followed by an overall name description. Example:# where `global-styles` is the name description of the branch git checkout -b feat-global-styles
-
Start doing your changes (Don't forget to add yourself as a contributor to the
package.json
file 🙂) -
Add the changes and commit them using this Commit styleguide
# including the changes to git git add --all # Add your commit message git commit -m "Feat: Add initial global styles for the website"
-
Push your changes with your branch to git remote
git push --set-upstream origin feat-global-styles
-
To publish the changes, create a new Pull Request to the develop branch, and assign a reviewer. The reviewer should review the code, comment any changes or approve and merge the branch to develop