sass-site/CONTRIBUTING.md

47 lines
1.3 KiB
Markdown
Raw Normal View History

2023-01-09 20:10:02 +01:00
# Contributing to the Sass website
The Sass website is open source. See a bug or typo? Have an idea? Do the
following:
2023-01-09 20:10:02 +01:00
- **Please read the [Implementation Guide][ig] and the [Style Guide][sg]**
before contributing.
2023-01-09 20:10:02 +01:00
- Write a detailed description of what you're adding in the pull request
(screenshots help).
2023-01-09 20:10:02 +01:00
- If there is new design or CSS, please add @Jina as a reviewer so she can see
if it needs to be added to the style guide (or if a suitable alternative
exists).
2023-01-09 20:10:02 +01:00
- Submit the pull request to the `main` branch.
- Drink whisky.
## Running Locally
This site is built with [middleman][], a Ruby framework for building static
sites.
You will need [Ruby][], [rubygems](http://rubygems.org/) and [bundler][]
installed before you can run the site locally.
If the above dependencies are installed, in your command line of preference,
navigate to the project repo and run:
```
bundle install
2018-03-10 00:32:48 +01:00
bundle exec rake sass:import
bundle exec middleman
```
## Deploying
2021-07-24 01:28:41 +02:00
Every time a new commit is pushed to main, it will automatically be deployed
to sass-lang.com. Easy as that!
Thanks!
2018-10-22 23:13:05 +02:00
— Sass Core Team
2023-01-09 20:10:02 +01:00
[ig]: https://sass-lang.com/implementation
[sg]: https://sass-lang.com/styleguide
2022-10-13 19:26:33 +02:00
[middleman]: https://middlemanapp.com
2023-01-09 20:10:02 +01:00
[ruby]: https://www.ruby-lang.org/en/downloads/
[bundler]: https://bundler.io/