@jswork/ushell-module-base 1.0.73 → 1.0.75

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.75](https://github.com/afeiship/ushell-module-base/compare/1.0.73...1.0.75) (2026-03-15)
4
+
5
+
6
+ ### Features
7
+
8
+ * add cx module for command execution ([7ee2ba8](https://github.com/afeiship/ushell-module-base/commit/7ee2ba8bcb0a6de386837b6c64e418b4dad401c6))
9
+
10
+ ## [1.0.74](https://github.com/afeiship/ushell-module-base/compare/1.0.73...1.0.74) (2026-03-04)
11
+
3
12
  ## [1.0.73](https://github.com/afeiship/ushell-module-base/compare/1.0.72...1.0.73) (2026-01-18)
4
13
 
5
14
  ## [1.0.72](https://github.com/afeiship/ushell-module-base/compare/1.0.71...1.0.72) (2026-01-18)
package/index.sh CHANGED
@@ -12,6 +12,7 @@ PS1="\[[\e[1;32m\]\u\[\e[m\]\[\e[1;36m\]@\[\e[m\]\[\e[1;35m\]\h\[\e[m\]:\w]\n\$
12
12
  source $ROOT_PATH/modules/01-edit.sh
13
13
  source $ROOT_PATH/modules/02-direnv.sh
14
14
  source $ROOT_PATH/modules/04-bakup.sh
15
+ source $ROOT_PATH/modules/05-cx.sh
15
16
  source $ROOT_PATH/modules/_ins.sh
16
17
  source $ROOT_PATH/modules/_mkp.sh
17
18
  source $ROOT_PATH/modules/cd.sh
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env bash
2
+
3
+ alias cx="cxc && source ~/.config/cx/boot.sh"
package/modules/cd.sh CHANGED
@@ -19,6 +19,7 @@ alias dkr="cd ~/aric-docker";
19
19
  alias a7="cd ~/alo7i";
20
20
  alias saybot="cd ~/saybot";
21
21
  alias dw="cd ~/Downloads";
22
+ alias dsk="cd ~/Desktop";
22
23
  alias dot="cd ~/.dotfiles";
23
24
  alias fit="cd ~/aric-tpls/fittings";
24
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jswork/ushell-module-base",
3
- "version": "1.0.73",
3
+ "version": "1.0.75",
4
4
  "description": "Unix like shell base module.",
5
5
  "main": "index.sh",
6
6
  "repository": {