-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Monorepo ALL tasks working perfectlygit status
- Loading branch information
Showing
15 changed files
with
575 additions
and
192 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 |
---|---|---|
@@ -1,9 +1,10 @@ | ||
{:deps {org.clojars.hephaistox/automaton-build-app {:mvn/version "0.0.70"}} | ||
;;The file is updated automatically | ||
{:deps #:org.clojars.hephaistox{automaton-build-app {:mvn/version "0.0.83"}} | ||
:paths [] | ||
:tasks {:requires [[automaton-build-app.tasks.launcher.bb-entrypoint :as build-task-bb-entrypoint] [babashka.process :as babahska-process]] | ||
heph-task {:doc "Launch an Hephaistox task" | ||
:task (System/exit (build-task-bb-entrypoint/-main *command-line-args*))} | ||
lconnect {:doc "Repl in case automaton-core is failing. Using -f or --force cli arguments to force start if some part are failing" | ||
:task (try (-> (babahska-process/shell "clojure" "-M:common-test:env-development-repl:build" *command-line-args*) | ||
System/exit) | ||
(catch Exception e (println "Repl failed also - error during repl startup" (ex-message e))))}}} | ||
(catch Exception e (println "Repl failed also - error during repl startup" (ex-message e))))}}} |
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,13 +1,9 @@ | ||
{:app-name "automaton-core" | ||
:task-shared {:gha {} | ||
:mermaid-dir "docs/code/" | ||
:publication {:as-lib org.clojars.hephaistox/automaton-core | ||
:branch "main" | ||
:jar-path "target/prod/automaton-core.jar" | ||
:deploy-to :clojars | ||
:major-version "0.0.%d" | ||
:pom-path "target/prod/class/META-INF/maven/org.clojars.hephaistox/automaton-core/pom.xml" | ||
:repo "[email protected]:hephaistox/automaton-core.git"} | ||
:repl-aliases [:common-test :env-development-repl :build] | ||
:storage-datomic {:datomic-ver "1.0.7021"}} | ||
:repl-aliases [:common-test :env-development-repl :build]} | ||
:tasks {:clean {:dirs [".cpcache/" ".clj-kondo/.cache/" "tmp/" "target/" "node_modules/" ".shadow-cljs/builds/"]} | ||
:reports {:forbiddenwords-words #{"automaton-web" "landing" "tap>"}}}} |
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
Oops, something went wrong.