A revamp of jekyll-postcss that uses Jekyll hooks and generally tries to be less complicated.
Gemfile
group :jekyll_plugins do
gem 'jekyll-postcss-v2'
end
_config.yml
(Until jekyll#8585 is released)
plugins:
- jekyll-postcss-v2
In your jekyll source directory:
npm i postcss postcss-cli
Also install any postcss plugins you wish to use. For example, fluidvars, autoprefixer, cssnano etc.
Configure your postcss.config.js
file in your jekyll source directory.
This plugin will try and locate Postcss automatically. If this fails, you can specify locations in the _config.yml
file of your site:
postcss:
script: node_modules/.bin/postcss
config: postcss.config.js
No extra configuration is required for deployment on platforms like CloudCannon which support custom plugins.
Please note that this plugin isn't supported by GitHub Pages.
To host on GitHub Pages and use this plugin, use GitHub Actions to build and deploy your website.
To do that, you need to specify a workflow inside the .github/workflows
of your repository for your build process. This could look like the following:
name: Jekyll Deploy
on:
schedule:
# run daily at 05:30
- cron: '30 5 * * *'
push:
branches:
- main
paths-ignore:
- 'Gemfile'
- 'README.md'
- 'LICENSE.md'
# Build site using jekyll
jobs:
jekyll:
runs-on: ubuntu-latest
steps:
# checkout code
- uses: actions/checkout@v2
# Use ruby/setup-ruby to shorten build times
# https://github.com/ruby/setup-ruby
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7 # Not needed with a .ruby-version file
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
# Install Node as this is needed for PostCSS
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '14'
# Install PostCSS plugins (from your package.json)
- run: npm install
- name: Build site
# use jekyll-action-ts to build
# https://github.com/limjh16/jekyll-action-ts
uses: limjh16/jekyll-action-ts@v2
with:
enable_cache: true
# custom_opts: '--verbose --trace' #'--drafts --future'
### If you need to specify any Jekyll build options, enable the above input
### Flags accepted can be found here https://jekyllrb.com/docs/configuration/options/#build-command-options
# use actions-gh-pages to deploy
# https://github.com/peaceiris/actions-gh-pages
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
# GITHUB_TOKEN secret is set up automatically
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_site
See: