From 2da8a34e888f0137c66d9d17297c89f0e1e6743b Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Sat, 9 May 2026 22:46:57 +0000 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=A7=B9=20Remove=20commented=20out=20B?= =?UTF-8?q?ootstrap=20imports=20in=20scss/starter.scss?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Commented out code is dead code that adds clutter without providing value. Removing it improves readability and maintainability of the codebase. Co-authored-by: SmolSoftBoi <491681+SmolSoftBoi@users.noreply.github.com> --- scss/starter.scss | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/scss/starter.scss b/scss/starter.scss index ab5f6fa..c317f63 100644 --- a/scss/starter.scss +++ b/scss/starter.scss @@ -33,30 +33,6 @@ $headings-font-weight: $font-weight-bold; @import "bootstrap/scss/helpers"; @import "bootstrap/scss/tables"; -// @import "bootstrap/scss/forms"; -// @import "bootstrap/scss/buttons"; -// @import "bootstrap/scss/transitions"; -// @import "bootstrap/scss/dropdown"; -// @import "bootstrap/scss/button-group"; -// @import "bootstrap/scss/nav"; -// @import "bootstrap/scss/navbar"; // Requires nav -// @import "bootstrap/scss/card"; -// @import "bootstrap/scss/accordian"; -// @import "bootstrap/scss/breadcrumb"; -// @import "bootstrap/scss/pagination"; -// @import "bootstrap/scss/badge"; -// @import "bootstrap/scss/alert"; -// @import "bootstrap/scss/progress"; -// @import "bootstrap/scss/list-group"; -// @import "bootstrap/scss/close"; -// @import "bootstrap/scss/toasts"; -// @import "bootstrap/scss/modal"; // Requires transitions -// @import "bootstrap/scss/tooltip"; -// @import "bootstrap/scss/popover"; -// @import "bootstrap/scss/carousel"; -// @import "bootstrap/scss/spinners"; -// @import "bootstrap/scss/offcanvas"; - // 7. Optionally include utilities API last to generate classes based on the Sass map in `_utilities.scss` @import "bootstrap/scss/utilities/api"; From 2fda9bab4e1d7bd0ca9b9f8664e8bed913d5c48c Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Mon, 11 May 2026 09:37:33 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=A7=B9=20Remove=20commented=20out=20B?= =?UTF-8?q?ootstrap=20imports=20and=20fix=20CI=20cache?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Removed commented out Bootstrap imports in scss/starter.scss. - Updated GitHub Actions workflow to use actions v4 and yarn cache. Co-authored-by: SmolSoftBoi <491681+SmolSoftBoi@users.noreply.github.com> --- .github/workflows/node.js.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 82e2b93..032e6e7 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -20,12 +20,12 @@ jobs: # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - cache: 'npm' + cache: 'yarn' - run: yarn install - run: yarn run build - run: yarn test