Skip to content

Commit

Permalink
Switch from scss to sass CLI tool
Browse files Browse the repository at this point in the history
The change also causes a change in the generated CSS.
  • Loading branch information
jchestershopify authored and simi committed Apr 11, 2023
1 parent c89cba4 commit 6ef4149
Show file tree
Hide file tree
Showing 4 changed files with 728 additions and 491 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,12 @@ are gladly accepted!
Setup
-----

Make sure you have jekyll installed (`gem install jekyll`), and run:
First, install the `sass` command line tool. On MacOS you can use Homebrew:

$ jekyll serve
$ brew install sass/sass/sass

Then run `bundle install` and `bundle exec rake`. This will launch both Jekyll and
Sass in "watch" mode.

The pages will be available at http://localhost:4000/

Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ desc "serve documentation on http://localhost:4000"
task :server do
pids = [
spawn('jekyll', 'serve', '4000'),
spawn('scss', '--watch', 'stylesheets:stylesheets'),
spawn('sass', '--watch', 'stylesheets:stylesheets'),
]

trap "INT" do
Expand Down
Loading

0 comments on commit 6ef4149

Please sign in to comment.