Skip to content

Commit

Permalink
Merge pull request #239 from zellij-org/x-colors
Browse files Browse the repository at this point in the history
X colors
  • Loading branch information
denismaxim0v authored May 2, 2021
2 parents 099861f + ce1f81b commit 98d9eac
Show file tree
Hide file tree
Showing 23 changed files with 686 additions and 233 deletions.
45 changes: 45 additions & 0 deletions Cargo.lock

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

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ lazy_static = "1.4.0"
wasmer = "1.0.0"
wasmer-wasi = "1.0.0"
interprocess = "1.0.1"
xrdb = "0.1.1"
colors-transform = "0.2.5"
zellij-tile = { path = "zellij-tile/", version = "1.1.0" }
zellij-tile-extra = { path = "zellij-tile-extra/", version="1.0.0" }

[dependencies.async-std]
version = "1.3.0"
Expand All @@ -52,6 +55,7 @@ structopt = "0.3"
[workspace]
members = [
"zellij-tile",
"zellij-tile-extra",
"default-plugins/status-bar",
"default-plugins/strider",
"default-plugins/tab-bar",
Expand Down
8 changes: 7 additions & 1 deletion Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ args = ["install", "cross"]
[tasks.publish]
clear = true
workspace = false
dependencies = ["build-plugins-release", "wasm-opt-plugins", "build-release", "publish-zellij-tile"]
dependencies = ["build-plugins-release", "wasm-opt-plugins", "build-release", "publish-zellij-tile", "publish-zellij-tile-extra"]
run_task = "publish-zellij"

[tasks.publish-zellij-tile]
Expand All @@ -117,6 +117,12 @@ cwd = "zellij-tile"
command = "cargo"
args = ["publish"]

[tasks.publish-zellij-tile-extra]
ignore_errors = true
cwd = "zellij-tile-extra"
command = "cargo"
args = ["publish"]

[tasks.publish-zellij]
command = "cargo"
args = ["publish"]
1 change: 1 addition & 0 deletions default-plugins/status-bar/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ license = "MIT"
colored = "2"
ansi_term = "0.12"
zellij-tile = { path = "../../zellij-tile" }
zellij-tile-extra = { path = "../../zellij-tile-extra" }
Loading

0 comments on commit 98d9eac

Please sign in to comment.