Skip to content

Commit 13435db

Browse files
committed
chore: disable the daisyui output
1 parent f001b87 commit 13435db

File tree

5 files changed

+14
-1
lines changed

5 files changed

+14
-1
lines changed

.github/workflows/check-python.yaml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,17 @@ on:
55

66
jobs:
77
check-python:
8-
runs-on: 'ubuntu-latest'
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
matrix:
11+
os: [ubuntu-latest, windows-latest, macos-latest]
912
steps:
13+
- name: Set windows git config
14+
if: ${{ runner.os == 'Windows' }}
15+
run: |
16+
git config --system core.longpaths true
17+
shell: cmd
18+
1019
- name: Checkout source code
1120
uses: actions/checkout@v4
1221

examples/cloud_provider/production_react_netlify/tailwind.config.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ module.exports = {
66
},
77
daisyui: {
88
themes: ['lofi'],
9+
logs: false,
910
},
1011
plugins: [require('daisyui')],
1112
}

examples/cloud_provider/production_react_vercel/tailwind.config.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ module.exports = {
66
},
77
daisyui: {
88
themes: ['lofi'],
9+
logs: false,
910
},
1011
plugins: [require('daisyui')],
1112
}

examples/production_react/tailwind.config.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ module.exports = {
66
},
77
daisyui: {
88
themes: ['lofi'],
9+
logs: false,
910
},
1011
plugins: [require('daisyui')],
1112
}

template_content/{% if use_tailwind %}tailwind.config.cjs{% endif %}.jinja

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ module.exports = {
77
{% if use_daisy_ui -%}
88
daisyui: {
99
themes: ['lofi'],
10+
logs: false,
1011
},
1112
plugins: [require('daisyui')],
1213
{%- endif %}

0 commit comments

Comments
 (0)