@jswork/ushell-module-base 1.0.70 → 1.0.71

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/index.sh CHANGED
@@ -11,6 +11,7 @@ PS1="\[[\e[1;32m\]\u\[\e[m\]\[\e[1;36m\]@\[\e[m\]\[\e[1;35m\]\h\[\e[m\]:\w]\n\$
11
11
 
12
12
  source $ROOT_PATH/modules/01-edit.sh
13
13
  source $ROOT_PATH/modules/02-direnv.sh
14
+ source $ROOT_PATH/modules/04-bakup.sh
14
15
  source $ROOT_PATH/modules/_ins.sh
15
16
  source $ROOT_PATH/modules/_mkp.sh
16
17
  source $ROOT_PATH/modules/cd.sh
@@ -25,7 +26,9 @@ source $ROOT_PATH/modules/yazi.sh
25
26
 
26
27
  # Edit file
27
28
  alias reload='source $BASH_BASE_PATH/src/index.sh'
28
- alias bakup='cd ~/github/macos-backup/ && gg "feat(daily): automatic backup mac files" && cd -'
29
+
30
+ # alias bakup='cd ~/github/macos-backup/ && gg "feat(daily): automatic backup mac files" && cd -'
31
+
29
32
  alias mkd="$ROOT_PATH/modules/_mkd.sh"
30
33
  alias ls-info="$ROOT_PATH/modules/03-ls-info.sh"
31
34
 
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env bash
2
+
3
+ bakup() {
4
+ (
5
+ cd ~/github/macos-backup/ &&
6
+ git add . &&
7
+ claude-ai commit --push
8
+ )
9
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jswork/ushell-module-base",
3
- "version": "1.0.70",
3
+ "version": "1.0.71",
4
4
  "description": "Unix like shell base module.",
5
5
  "main": "index.sh",
6
6
  "repository": {