@leverege/build-tools 2.19.3 → 2.20.0-beta.1
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.
|
Binary file
|
|
@@ -53,7 +53,7 @@ class Templates {
|
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
needsAnIngestionPort(template) {
|
|
56
|
-
return template.type === 'ingestor' && template.subType !== 'PubSub';
|
|
56
|
+
return template.type === 'ingestor' && template.subType !== 'PubSub' && template.subType !== 'HTTP';
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
async runInquiry(spec) {
|
|
@@ -116,7 +116,7 @@ class Templates {
|
|
|
116
116
|
type: 'confirm',
|
|
117
117
|
name: 'template.helmify',
|
|
118
118
|
message: 'Run helmify to generate Helm Charts?',
|
|
119
|
-
default:
|
|
119
|
+
default: false,
|
|
120
120
|
when: answers => {
|
|
121
121
|
const template = this.lookupTemplateByType(answers.template.type);
|
|
122
122
|
return typeof template.helm !== 'undefined';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leverege/build-tools",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.20.0-beta.1",
|
|
4
4
|
"description": "A collection of build / support tools for Leverege developers",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -70,15 +70,15 @@
|
|
|
70
70
|
"parse-gitignore": "^2.0.0",
|
|
71
71
|
"readline-sync": "^1.4.10",
|
|
72
72
|
"semver": "^7.3.7",
|
|
73
|
-
"simple-git": "^3.
|
|
74
|
-
"zx": "^7.0.
|
|
73
|
+
"simple-git": "^3.10.0",
|
|
74
|
+
"zx": "^7.0.7"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
|
-
"@babel/cli": "^7.18.
|
|
78
|
-
"@babel/core": "^7.18.
|
|
79
|
-
"@babel/node": "^7.18.
|
|
77
|
+
"@babel/cli": "^7.18.9",
|
|
78
|
+
"@babel/core": "^7.18.9",
|
|
79
|
+
"@babel/node": "^7.18.9",
|
|
80
80
|
"@leverege/babel-preset-leverege-node": "^2.0.0",
|
|
81
81
|
"@leverege/eslint-config-leverege": "^3.0.1",
|
|
82
|
-
"npm": "^8.
|
|
82
|
+
"npm": "^8.14.0"
|
|
83
83
|
}
|
|
84
84
|
}
|
package/src/dockreate
CHANGED
|
@@ -228,15 +228,6 @@ npmlogging='--silent' # allow for verbose npm logs
|
|
|
228
228
|
[ "$VERBOSE_DOCKREATE_NPM" == "yes" ] && npmlogging='--ddd'
|
|
229
229
|
|
|
230
230
|
echo "Updating dependencies and workspace..." && npm install
|
|
231
|
-
if [ $? -ne 0 ];
|
|
232
|
-
then
|
|
233
|
-
cat<<INSTALLFAILED
|
|
234
|
-
|
|
235
|
-
$(color y 'npm install') $(color r 'FAILED') - fix it in order to proceed
|
|
236
|
-
|
|
237
|
-
INSTALLFAILED
|
|
238
|
-
exit 1
|
|
239
|
-
fi
|
|
240
231
|
|
|
241
232
|
container="`node -p \"require('../package.json').leverege.container\"`"
|
|
242
233
|
if [ "$container" == "undefined" ];
|
package/src/helmup
CHANGED