-
-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Check Alpine.js is loaded when
morph
is called to deal with it bein…
…g loaded with `defer`.
- Loading branch information
Showing
9 changed files
with
265 additions
and
254 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,7 @@ | |
|
||
<script defer src="https://unpkg.com/@alpinejs/[email protected]/dist/cdn.min.js"></script> | ||
<script defer src="https://unpkg.com/[email protected]/dist/cdn.min.js"></script> | ||
|
||
{% unicorn_scripts %} | ||
</head> | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"version": "0.56.0", | ||
"version": "0.56.1", | ||
"name": "django-unicorn", | ||
"scripts": { | ||
"build": "npx rollup -c", | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "django-unicorn" | ||
version = "0.56.0" | ||
version = "0.56.1" | ||
description = "A magical full-stack framework for Django." | ||
authors = ["Adam Hill <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -144,6 +144,7 @@ tp = { cmd = "nox -r", help = "Run the entire Python test suite with nox" } | |
tj = { cmd = "npm run-script test", help = "Run the JavaScript unit tests" } | ||
ta = ["tp", "tj"] | ||
jb = { cmd = "npm run build", help = "Build the JavaScript library" } | ||
ji = { cmd = "npm install", help = "Install JS" } | ||
t = { cmd = "pytest -m 'not slow'", help = "Run Python unit tests" } | ||
tb = { cmd = "pytest tests/benchmarks/ --benchmark-autosave --benchmark-only", help = "Run Python unit tests with benchmarks" } | ||
tbc = { cmd = "pytest tests/benchmarks/ --benchmark-only --benchmark-compare", help = "Run Python unit tests with compared benchmarks" } | ||
|
@@ -155,7 +156,7 @@ rf = { cmd = "ruff .", help = "Run ruff" } | |
tm = ["b", "rf", "tc", "my"] | ||
sa = { cmd = "sphinx-autobuild -W docs/source docs/build", help = "Sphinx autobuild" } | ||
sb = { cmd = "sphinx-build -W docs/source docs/build", help = "Build documentation" } | ||
build = ["b", "rf", "tc", "tj", "jb", "sb"] | ||
build = ["b", "rf", "tc", "ji", "tj", "jb", "sb"] | ||
publish = { shell = "poetry publish --build -r test && poetry publish" } | ||
|
||
[build-system] | ||
|