-
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Solves issue #205, #312, and #313: * use tools.build instead of seancorfield/build-clj, issue 312. * Handle dollar sign correctly in namespace names in imports, issue 313. * Added :workspace as to the 'help deps' intellisense. Bumped the portal library. * Print detailed error (row, column, message) if a file couldn't be read. * Extend autocomplete in the shell if starting a shell with :all: +, changed-files, :color-mode, :no-changes, skip * Only show the workspace structure in the portal window, when starting a shell with 'poly :tap'. * Added support for creating an image from the output from the info, deps, and libs commands, by passing in out:FILENAME, where FILENAME ends with e.g. .png (.txt will generate a text file). * Added the overview command, that generates an image of the info/deps/libs tables. * Exclude license files when building an uberjar. * Don't show the tag in the info command if fake-sha is passed in. * Build with circleci/clojure:tools-deps-1.11.1 in circleci. * Don't include tools.deps when creating a project. * Refactored projects-from-disk, by reading paths and libs separately. * Fixed an edge case in the function that calculates bricks to test. * Removed :all as parameter from the brick-project-deps table. * Updated the help for info, deps, libs, and overview + the summary. * Removed the :all parameter for the libs command. * The output from the libs command no looks good when passing in skip:dev. * Show overview in the help for polyx. * Show size as - in the libs command if the size is zero bytes. * Only tap the workspace + timing info. * Use the :local/root for bricks in the development environment, now when issue 2554 for Cursive is fixed! * If a library doesn't exist on disk, don't include the :size key in the libs structure. * Renamed warning 206 to "Unreadable namespace...". * Improved warning 206 and 207. * Store the vector of the circular deps in error 104. * Added the Out and Polyx sections to the create example script. Removed io.github.seancorfield/build-clj from ./deps.edn. * Fixed a bug in the workspace function in the api component. * Added polyx as alias in workspace.edn. * Let build.sh build poly, and build-extended.sh build polyx. * Added an :all section to the help overview. * Fixed a bug in the create example script (save exit code correctly). * Commented out the test polylith-libs-outdated so that tests don't start to fail when a new version of a library is released. * Also store :type in error 110. * Store the :test-runner-api attribute to the :version key in the workspace structure.
- Loading branch information
1 parent
21cf93d
commit 9053b19
Showing
209 changed files
with
3,322 additions
and
3,185 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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env bash | ||
|
||
echo "#### Build poly(x) uberjar" | ||
clojure -T:build uberjar :project polyx | ||
sudo cp projects/polyx/target/polyx.jar /usr/local/polylith/poly.jar |
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
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
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
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,6 +1,5 @@ | ||
(ns polylith.clj.core.change.interface | ||
(:require [polylith.clj.core.change.core :as core] | ||
[polylith.clj.core.util.interface.time :as time-util])) | ||
(:require [polylith.clj.core.change.core :as core])) | ||
|
||
(defn with-changes [workspace] | ||
(time-util/tap-seconds "#with-changes" (core/with-changes workspace))) | ||
(core/with-changes workspace)) |
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.