From 1256be8da4471864ee7047d43d75da93b0b7bfba Mon Sep 17 00:00:00 2001 From: Scott Motte Date: Sat, 15 Jul 2023 12:36:24 -0700 Subject: [PATCH] Ignore .scss files --- .github/workflows/ci.yml | 2 +- postcss.config.js | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f397ae66..0988c4e8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: uses: actions/configure-pages@v3 - name: Build with Jekyll # Outputs to the './_site' directory by default - run: bundle install && bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" --trace + run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" --trace env: JEKYLL_ENV: production MEDIUM_USER_ID: ${{ secrets.MEDIUM_USER_ID }} diff --git a/postcss.config.js b/postcss.config.js index 1ba4eba5..6011044e 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,4 +1,7 @@ module.exports = { + ignore: [ + "**/*.scss" + ], plugins: [ require('tailwindcss'), require('autoprefixer'),