-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
654 additions
and
1,406 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Changelog | ||
|
||
## [Unreleased] | ||
|
||
## [0.2.0] - 2020-12-14 | ||
|
||
The only feature is expanding the project to support server-side Hiccup, and | ||
thus renaming the project from *tailwind-cljs* to *tailwind-hiccup*. | ||
|
||
### Changed | ||
|
||
- Library now supports use in Clojure, not just Clojurescript | ||
- Core namespace is now `tailwind-hiccup.core`, not `tw-cljs.core` | ||
- Maven coordinates are now `[rgm/tailwind-hiccup "0.2.0"]`, not `-cljs` |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/usr/bin/env bash | ||
|
||
clojure -A:build -m hf.depstar.jar tailwind-cljs.jar | ||
clojure -A:build -m hf.depstar.jar tailwind-hiccup.jar |
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,4 +1,4 @@ | ||
#!/usr/bin/env bash | ||
|
||
clojure -A:build -m deps-deploy.deps-deploy deploy tailwind-cljs.jar true | ||
clojure -A:build -m deps-deploy.deps-deploy deploy tailwind-hiccup.jar true | ||
|
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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
{:paths ["src" "resources" "target"] | ||
:deps {com.bhauman/figwheel-main {:mvn/version "0.2.4-20200416.204934-2"} | ||
rgm/tailwind-cljs {:git/url "https://github.com/rgm/tailwind-cljs" | ||
:sha "6ef1080289c3e740af3bd650b37f6f7594dc050a"} | ||
rum {:mvn/version "0.11.4"}}} | ||
:deps {com.bhauman/figwheel-main {:mvn/version "0.2.12"} | ||
rgm/tailwind-hiccup {:local/root "../.."} | ||
rum/rum {:mvn/version "0.11.4"}}} |
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,4 +1,4 @@ | ||
^{:css-dirs ["resources/public"] | ||
:watch-dirs ["src"]} | ||
{:main tw-cljs-example.core | ||
{:main tailwind-hiccup-example.core | ||
:output-to "resources/public/app.js"} |
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,16 +1,16 @@ | ||
{ | ||
"name": "tailwind-cljs-basic-example", | ||
"name": "tailwind-hiccup-basic-example", | ||
"version": "1.0.0", | ||
"main": "index.js", | ||
"repository": "https://github.com/rgm/tailwind-cljs/examples/basic", | ||
"repository": "https://github.com/rgm/tailwind-hiccup/examples/basic", | ||
"author": "Ryan McCuaig <ryan@ryanmccuaig.net>", | ||
"license": "EPL-2.0", | ||
"dependencies": { | ||
"@fullhuman/postcss-purgecss": "^2.0.6", | ||
"@tailwindcss/ui": "^0.1.3", | ||
"autoprefixer": "^10.1.0", | ||
"cssnano": "^4.1.10", | ||
"postcss": "^7.0.21", | ||
"postcss-cli": "^6.1.3", | ||
"tailwindcss": "^1.3.4" | ||
"postcss": "^8.2.1", | ||
"postcss-cli": "^8.3.1", | ||
"tailwindcss": "^2.0.2" | ||
} | ||
} |
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
6 changes: 3 additions & 3 deletions
6
examples/basic/src/tw_cljs_example/core.cljs → ...sic/src/tailwind_hiccup_example/core.cljs
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 |
---|---|---|
|
@@ -2,5 +2,5 @@ module.exports = { | |
theme: { | ||
extend: {}, | ||
}, | ||
plugins: [require("@tailwindcss/ui")], | ||
plugins: [], | ||
}; |
Oops, something went wrong.