@leverege/build-tools 2.38.0-john.1 → 2.38.0-john.2
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/package.json +14 -14
- package/src/bash-funcs +1 -1
- package/src/{dockreate → dockreate.sh} +0 -1
- /package/src/{decrypt-secrets → decrypt-secrets.sh} +0 -0
- /package/src/{dirty-git → dirty-git.sh} +0 -0
- /package/src/{encrypt-secrets → encrypt-secrets.sh} +0 -0
- /package/src/{git-tar → git-tar.sh} +0 -0
- /package/src/{helmdn → helmdn.sh} +0 -0
- /package/src/{klog → klog.sh} +0 -0
- /package/src/{npm-link → npm-link.sh} +0 -0
- /package/src/{npm-unlink → npm-unlink.sh} +0 -0
- /package/src/{pkgck → pkgck.sh} +0 -0
- /package/src/{pkglint → pkglint.sh} +0 -0
- /package/src/{prune-git → prune-git.sh} +0 -0
- /package/src/{pull-git → pull-git.sh} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leverege/build-tools",
|
|
3
|
-
"version": "2.38.0-john.
|
|
3
|
+
"version": "2.38.0-john.2",
|
|
4
4
|
"description": "A collection of build / support tools for Leverege developers",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -20,16 +20,16 @@
|
|
|
20
20
|
"bin": {
|
|
21
21
|
"build-tools": "src/build-tools.js",
|
|
22
22
|
"circleate": "src/circleate.sh",
|
|
23
|
-
"decrypt-secrets": "src/decrypt-secrets",
|
|
24
|
-
"dirty-git": "src/dirty-git",
|
|
25
|
-
"dockreate": "src/dockreate",
|
|
26
|
-
"encrypt-secrets": "src/encrypt-secrets",
|
|
23
|
+
"decrypt-secrets": "src/decrypt-secrets.sh",
|
|
24
|
+
"dirty-git": "src/dirty-git.sh",
|
|
25
|
+
"dockreate": "src/dockreate.sh",
|
|
26
|
+
"encrypt-secrets": "src/encrypt-secrets.sh",
|
|
27
27
|
"firebaseDeploy": "src/firebaseDeploy.mjs",
|
|
28
28
|
"firebaseServe": "src/firebaseServe.mjs",
|
|
29
29
|
"getfbcfg": "src/getfbcfg.mjs",
|
|
30
30
|
"getjson": "src/getjson.mjs",
|
|
31
|
-
"git-tar": "src/git-tar",
|
|
32
|
-
"helmdn": "src/helmdn",
|
|
31
|
+
"git-tar": "src/git-tar.sh",
|
|
32
|
+
"helmdn": "src/helmdn.sh",
|
|
33
33
|
"helmup": "src/helmup.sh",
|
|
34
34
|
"helminit": "src/helmup.sh",
|
|
35
35
|
"helmwhat": "src/helmup.sh",
|
|
@@ -37,14 +37,14 @@
|
|
|
37
37
|
"k8scale": "src/k8scale.sh",
|
|
38
38
|
"k8thaw": "src/k8cryo.sh",
|
|
39
39
|
"k8x": "src/k8x.sh",
|
|
40
|
-
"klog": "src/klog",
|
|
41
|
-
"npm-link": "src/npm-link",
|
|
42
|
-
"npm-unlink": "src/npm-unlink",
|
|
40
|
+
"klog": "src/klog.sh",
|
|
41
|
+
"npm-link": "src/npm-link.sh",
|
|
42
|
+
"npm-unlink": "src/npm-unlink.sh",
|
|
43
43
|
"overwhelm": "src/overwhelm.js",
|
|
44
|
-
"pkgck": "src/pkgck",
|
|
45
|
-
"pkglint": "src/pkglint",
|
|
46
|
-
"prune-git": "src/prune-git",
|
|
47
|
-
"pull-git": "src/pull-git",
|
|
44
|
+
"pkgck": "src/pkgck.sh",
|
|
45
|
+
"pkglint": "src/pkglint.sh",
|
|
46
|
+
"prune-git": "src/prune-git.sh",
|
|
47
|
+
"pull-git": "src/pull-git.sh",
|
|
48
48
|
"push-my-chart": "src/push-my-chart.mjs",
|
|
49
49
|
"refresh-npm-token": "src/refresh-npm-token.mjs",
|
|
50
50
|
"tag-release": "src/tag-release.mjs",
|
package/src/bash-funcs
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
# see exactly what certain commands are complaining about. Running any of the
|
|
10
10
|
# build-tools with BUILD_TOOLS_DEBUG=1 will redirect the noise to stdout.
|
|
11
11
|
DEVNULL="/dev/null"
|
|
12
|
-
[ ! -z "BUILD_TOOLS_DEBUG" ] && DEVNULL="/dev/stdout" && printf "\n***BUILD_TOOLS_DEBUG DEVNULL=>$DEVNULL\n"
|
|
12
|
+
[ ! -z "$BUILD_TOOLS_DEBUG" ] && DEVNULL="/dev/stdout" && printf "\n***BUILD_TOOLS_DEBUG DEVNULL=>$DEVNULL\n"
|
|
13
13
|
|
|
14
14
|
# Simple ANSI color coded string generator.
|
|
15
15
|
function color() {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/src/{klog → klog.sh}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/src/{pkgck → pkgck.sh}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|