@jswork/ushell-module-base 1.0.25 → 1.0.28

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
@@ -10,9 +10,9 @@ PS1="\[[\e[1;32m\]\u\[\e[m\]\[\e[1;36m\]@\[\e[m\]\[\e[1;35m\]\h\[\e[m\]:\w]\n\$
10
10
 
11
11
  ## base:
12
12
  source $ROOT_PATH/modules/cd.sh;
13
- source $ROOT_PATH/modules/chmod.sh;
14
- source $ROOT_PATH/modules/chown.sh;
15
13
  source $ROOT_PATH/modules/ip.sh;
14
+ source $ROOT_PATH/modules/kill.sh;
15
+ source $ROOT_PATH/modules/open.sh;
16
16
  source $ROOT_PATH/modules/shorty.sh;
17
17
  source $ROOT_PATH/modules/tail.sh;
18
18
 
package/modules/ip.sh CHANGED
@@ -5,7 +5,3 @@ if [[ $(uname) == Darwin ]]; then
5
5
  else
6
6
  export SERVER_IP=`wget -qO- icanhazip.com -T 2`;
7
7
  fi
8
-
9
-
10
-
11
-
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env bash
2
+
3
+
4
+
5
+ # base dir
6
+ alias k9="kill -9";
7
+
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jswork/ushell-module-base",
3
- "version": "1.0.25",
3
+ "version": "1.0.28",
4
4
  "description": "Unix like shell base module.",
5
5
  "main": "index.sh",
6
6
  "repository": {
@@ -27,8 +27,8 @@
27
27
  "registry": "https://registry.npmjs.org/"
28
28
  },
29
29
  "devDependencies": {
30
- "prettier": "^2.2.1",
31
- "release-it": "^14.14.3"
30
+ "prettier": "^2.8.0",
31
+ "release-it": "^15.5.1"
32
32
  },
33
33
  "scripts": {
34
34
  "release": "release-it"
package/modules/chmod.sh DELETED
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env bash
2
-
3
- alias cmod='chmod +x * .*';