(keep? {:keys [project-name]} project->settings skip)Skip projects that are passed in as e.g. skip:P1:P2.
Skip projects that are passed in as e.g. skip:P1:P2.
(read-project {:keys [project-name project-dir project-config-dir is-dev]}
              ws-dir
              ws-type
              name->brick
              project->settings
              user-home)(read-project ws-dir
              name->brick
              project-name
              project-dir
              config-filename
              is-dev
              maven-repos
              project->settings
              user-home
              project-src-paths
              project-src-deps
              project-test-paths
              project-test-deps
              override-src-deps
              override-test-deps)(read-projects ws-dir
               ws-type
               name->brick
               project->settings
               user-input
               user-home)(src-paths-and-libs-from-bricks ws-dir
                                name->brick
                                is-dev
                                project-name
                                user-home
                                project-src-deps
                                project-src-paths
                                override-deps)Returns all src paths and src dependencies that are included from the src context for a given project deps.edn file, including:
Returns all src paths and src dependencies that are included from the src context for a given project deps.edn file, including: - project paths that are specified as :paths or :aliases > :dev > :extra-paths (development) in the project's deps.edn file. - brick :src paths that are specified in :deps or :aliases > :dev > :extra-deps (development) as :local/root in the project's deps.edn file and extracted from the corresponding brick deps.edn files. - brick :src libraries that are specified in :deps or :aliases > :dev > :extra-deps (development) in the project's deps.edn file. - brick :src libraries that are specified in :deps or :aliases > :dev > :extra-deps (development) as :local/root in the project's deps.edn file and extracted from the corresponding brick deps.edn files. If :override-deps is given, then library versions will be overridden.
(test-paths-and-libs-from-bricks ws-dir
                                 name->brick
                                 is-dev
                                 project-name
                                 bricks-to-test
                                 user-home
                                 project-src-deps
                                 project-test-deps
                                 project-test-paths
                                 override-src-deps
                                 override-test-deps)Returns all test paths and test dependencies that are included from the test context for a given project deps.edn file, including:
Returns all test paths and test dependencies that are included from the test context for a given project deps.edn file, including: - project paths that are specified as :aliases > :test > :extra-paths in the project's deps.edn file. - brick :test paths that are specified in :aliases > :src > :extra-deps as :local/root in the project's deps.edn file and extracted from the corresponding brick deps.edn files. - brick :test paths that are specified in :aliases > :test > :extra-deps as :local/root in the project's deps.edn file and extracted from the corresponding brick deps.edn files. - brick :src paths that are specified in :aliases > :test > :extra-deps as :local/root but not in :aliases > :src > :extra-deps, are extracted from the corresponding brick deps.edn files. This is needed when a brick is only added to the test context but not to the source context, so that we have access to the brick under test. - brick :test libraries that are specified in :aliases > :test > :extra-deps in the project's deps.edn file. - brick :test libraries that are specified in :aliases > :dev > :extra-deps as :local/root in the project's deps.edn file and extracted from the corresponding brick deps.edn files. - brick :src libraries that are specified in :aliases > :test > :extra-deps as :local/root but not in :aliases > :src > :extra-deps, are extracted from the corresponding brick deps.edn files. If :override-deps is given, then library versions will be overridden.
cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs | 
| ← | Move to previous article | 
| → | Move to next article | 
| Ctrl+/ | Jump to the search field |