(ns build
(:require [clojure.java.io :as jio]
[clojure.tools.build.api :as b]
[clojure.tools.deps.util.dir :as t]
[juxt.pack.api :as pack]))
(defn pack
[_]
(b/with-project-root "path/to/project/root"
(t/with-dir (jio/file b/*project-root*)
(pack/...))))