Skip to content

Commit

Permalink
Try to fix cljdocs by adding dep on reagent
Browse files Browse the repository at this point in the history
  • Loading branch information
mainej committed Jan 19, 2022
1 parent f35e4df commit e25a8ef
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 8 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ change log follows the conventions of

## [Unreleased]

## [1.4.3.46]
### Fixed
- cljdocs, by specifying dependency on reagent

## [1.4.3.44]
### Changed
- Upgraded to @headlessui/react 1.4.3
Expand Down Expand Up @@ -71,7 +75,8 @@ Update clojars with more repository information.
- Reagent interop with @headlessui/react for Disclosure, Transition and FocusTrap

[Unreleased]: https://github.com/mainej/headlessui-reagent/compare/v1.4.3.44...main
[1.4.3.44]: https://github.com/mainej/headlessui-reagent/compare/v1.4.2.43...1.4.3.44
[1.4.3.44]: https://github.com/mainej/headlessui-reagent/compare/v1.4.3.44...v1.4.3.46
[1.4.3.44]: https://github.com/mainej/headlessui-reagent/compare/v1.4.2.43...v1.4.3.44
[1.4.2.43]: https://github.com/mainej/headlessui-reagent/compare/v1.4.1.40...1.4.2.43
[1.4.1.40]: https://github.com/mainej/headlessui-reagent/compare/v1.4.0.32...v1.4.1.40
[1.4.0.32]: https://github.com/mainej/headlessui-reagent/compare/v1.2.1...v1.4.0.32
Expand Down
14 changes: 10 additions & 4 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
{:paths ["src"]
:deps {}
;; Mark reagent as <optional>true</optional> in the pom. Would be more correct
;; [1] to mark it as <scope>provided</scope> since reagent is always needed to
;; use this lib. But, tools.build doesn't support scope [2].
;; [1] https://medium.com/@danismaz.furkan/difference-between-optional-true-optional-and-scope-provided-scope-7404ec24fb59
;; [2] https://ask.clojure.org/index.php/9110/scope-in-deps-edn-should-be-added-and-not-deleted-from-pom-xml
:deps {reagent/reagent {:mvn/version "1.1.0"
:optional true}}
:aliases {;; for help: clojure -A:deps -T:build help/doc
:build {:paths ["dev"]
:deps {io.github.seancorfield/build-clj {:git/tag "v0.1.0" :git/sha "fe2d586"}}
:ns-default build}}}
:build {:paths ["dev"]
:deps {io.github.seancorfield/build-clj {:git/tag "v0.1.0" :git/sha "fe2d586"}}
:ns-default build}}}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "headlessui-reagent",
"version": "1.4.3.44",
"version": "1.4.3.46",
"description": "Adapts headlessui for use with Reagent",
"repository": {
"type": "git",
Expand Down

0 comments on commit e25a8ef

Please sign in to comment.