Skip to content

Commit dbae3e4

Browse files
committed
Extends scope of @source directive
1 parent bb7011c commit dbae3e4

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-tailwind"
3-
version = "4.0.0"
3+
version = "4.0.1"
44
description = "Tailwind CSS Framework for Django projects"
55
authors = ["Tim Kamanin <[email protected]>"]
66
license = "MIT"

src/tailwind/app_template_v4/{{cookiecutter.app_name}}/static_src/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "{{ cookiecutter.app_name }}",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"description": "",
55
"scripts": {
66
"start": "npm run dev",

src/tailwind/app_template_v4/{{cookiecutter.app_name}}/static_src/src/styles.css

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* A catch-all path to Django template files, JavaScript, and Python files
55
* that contain Tailwind CSS classes and will be scanned by Tailwind to generate the final CSS file.
66
*
7-
* If your final CSS file is not being updated after code changes, you may want to broaden the scope of this path.
7+
* If your final CSS file is not being updated after code changes, you may want to broaden or narrow
8+
* the scope of this path.
89
*/
9-
@source "../../**/*.{html,py,js}";
10+
@source "../../../**/*.{html,py,js}";

0 commit comments

Comments
 (0)