From 597668b12c894d6a97f0f24c3a34cc7b619c44f0 Mon Sep 17 00:00:00 2001 From: fsubal Date: Sun, 15 Oct 2023 03:08:30 +0000 Subject: [PATCH] fix --- .github/workflows/ci.yml | 4 ++-- .../tailwind.config.js" | 13 ++++++------- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 26e1db1..5ae9217 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,8 +25,8 @@ jobs: node-version: ${{ matrix.node-version }} cache: "npm" - run: npm ci - - run: npx run-s build:* 2> $GITHUB_WORKSPACE/build.stderr.log - - run: npx run-s test:* 2> $GITHUB_WORKSPACE/test.stderr.log + - run: npx run-s --print-label build:* 2> $GITHUB_WORKSPACE/build.stderr.log + - run: npx run-s --print-label test:* 2> $GITHUB_WORKSPACE/test.stderr.log - run: | if grep "warn" $GITHUB_WORKSPACE/*.log; then diff --git "a/src/\347\254\2543\347\253\240_Tailwind_CSS\343\202\222\345\260\216\345\205\245\343\201\231\343\202\213/tailwind.config.js" "b/src/\347\254\2543\347\253\240_Tailwind_CSS\343\202\222\345\260\216\345\205\245\343\201\231\343\202\213/tailwind.config.js" index 97ed915..9dfe49b 100644 --- "a/src/\347\254\2543\347\253\240_Tailwind_CSS\343\202\222\345\260\216\345\205\245\343\201\231\343\202\213/tailwind.config.js" +++ "b/src/\347\254\2543\347\253\240_Tailwind_CSS\343\202\222\345\260\216\345\205\245\343\201\231\343\202\213/tailwind.config.js" @@ -1,12 +1,11 @@ +const path = require("path"); + /** @type {import('tailwindcss').Config} */ module.exports = { - content: { - // NOTICE: ここでrelative: trueを指定しているのは、 - // プロジェクトルートにないtailwind.config.jsを使っているからです(説明の都合上フォルダを章ごとに分けております) - // tailwind.config.jsをふつうにプロジェクトルートに置いてるケースでは特に真似する必要はありません - relative: true, - files: ["./srca/index.html"], - }, + // NOTICE: ここでわざわざ絶対パスを指定しているのは、 + // プロジェクトルートにないtailwind.config.jsを使っているからです(説明の都合上フォルダを章ごとに分けております) + // tailwind.config.jsをふつうにプロジェクトルートに置いてるケースでは特に真似する必要はありません + content: [path.resolve(__dirname, "src", "index.html")], theme: { extend: {}, },