Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rebroadcast test #245

Merged
merged 3 commits into from
Oct 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion .sealog/config.edn → .wallbrew/sealog/config.edn
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{:changelog-filename "CHANGELOG.md"
:changelog-entry-directory ".sealog/changes/"
:changelog-entry-directory ".wallbrew/sealog/changes/"
:version-scheme :semver3
:pretty-print-edn? true}
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

.PHONE: version/major version/minor version/patch changelog/render
MAKE = make

# These are the locations of the directories we'll use
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

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

7 changes: 3 additions & 4 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,10 @@
[org.clojure/clojurescript "1.11.132" :scope "provided"]]

:plugins [[com.github.clj-kondo/lein-clj-kondo "2024.09.27"]
[com.wallbrew/lein-sealog "1.7.0"]
[com.wallbrew/bouncer "1.0.0"]
[com.wallbrew/lein-sealog "1.8.0"]
[com.wallbrew/bouncer "1.1.1"]
[lein-cljsbuild/lein-cljsbuild "1.1.8"]
[mvxcvi/cljstyle "0.16.630"]
[ns-sort/ns-sort "1.0.3"]]
[mvxcvi/cljstyle "0.16.630"]]

:deploy-repositories [["clojars" {:url "https://clojars.org/repo"
:username :env/clojars_user
Expand Down
5 changes: 2 additions & 3 deletions test/brew_bot/core_test.cljc
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
(ns brew-bot.core-test
(:require #? (:clj [clojure.test :refer [deftest is testing]])
#? (:cljs [cljs.test :refer-macros [deftest is testing]])
[brew-bot.core :as sut]
(:require [brew-bot.core :as sut]
[clojure.spec.alpha :as spec]
[clojure.test :refer [deftest is testing]]
[common-beer-data.core :as data]
[common-beer-format.fermentables :as fermentables]
[common-beer-format.hops :as hops]
Expand Down
5 changes: 2 additions & 3 deletions test/brew_bot/util_test.cljc
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
(ns brew-bot.util-test
(:require #? (:clj [clojure.test :refer [deftest is testing]])
#? (:cljs [cljs.test :refer-macros [deftest is testing]])
[brew-bot.util :as sut]
(:require [brew-bot.util :as sut]
[clojure.spec.alpha :as spec]
[clojure.test :refer [deftest is testing]]
[common-beer-data.core :as data]
[common-beer-format.fermentables :as fermentables]
[common-beer-format.hops :as hops]
Expand Down
Loading