@leverege/build-tools 2.19.1 → 2.19.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/lib/server/overwhelm.js
CHANGED
|
@@ -276,8 +276,9 @@ if (args.key) {
|
|
|
276
276
|
} // Find all of the potential target dirs. Utilize .gitignore to ignore files
|
|
277
277
|
|
|
278
278
|
|
|
279
|
+
const gitignore = parse(fs.readFileSync('.gitignore'));
|
|
279
280
|
const opt = {
|
|
280
|
-
ignore:
|
|
281
|
+
ignore: gitignore.patterns
|
|
281
282
|
};
|
|
282
283
|
const ahoy = glob.sync('*/', opt); // .noahoy = skips generation of values.yaml but allows helmup to run
|
|
283
284
|
// .nohelm = overwhelm and helmup will skip the deployment entirely
|
|
Binary file
|
package/lib/web/overwhelm.js
CHANGED
|
@@ -276,8 +276,9 @@ if (args.key) {
|
|
|
276
276
|
} // Find all of the potential target dirs. Utilize .gitignore to ignore files
|
|
277
277
|
|
|
278
278
|
|
|
279
|
+
const gitignore = parse(fs.readFileSync('.gitignore'));
|
|
279
280
|
const opt = {
|
|
280
|
-
ignore:
|
|
281
|
+
ignore: gitignore.patterns
|
|
281
282
|
};
|
|
282
283
|
const ahoy = glob.sync('*/', opt); // .noahoy = skips generation of values.yaml but allows helmup to run
|
|
283
284
|
// .nohelm = overwhelm and helmup will skip the deployment entirely
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leverege/build-tools",
|
|
3
|
-
"version": "2.19.
|
|
3
|
+
"version": "2.19.2",
|
|
4
4
|
"description": "A collection of build / support tools for Leverege developers",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -60,14 +60,14 @@
|
|
|
60
60
|
"enquirer": "^2.3.6",
|
|
61
61
|
"execa": "^5.1.1",
|
|
62
62
|
"figlet": "^1.5.2",
|
|
63
|
-
"glob": "^
|
|
63
|
+
"glob": "^8.0.3",
|
|
64
64
|
"inquirer": "^8.2.4",
|
|
65
65
|
"js-yaml": "^4.1.0",
|
|
66
66
|
"ncp": "^2.0.0",
|
|
67
|
-
"npm-registry-fetch": "^
|
|
67
|
+
"npm-registry-fetch": "^13.3.0",
|
|
68
68
|
"open": "^8.4.0",
|
|
69
69
|
"ora": "^5.4.1",
|
|
70
|
-
"parse-gitignore": "^
|
|
70
|
+
"parse-gitignore": "^2.0.0",
|
|
71
71
|
"readline-sync": "^1.4.10",
|
|
72
72
|
"semver": "^7.3.7",
|
|
73
73
|
"simple-git": "^3.10.0",
|
package/src/overwhelm.js
CHANGED
|
@@ -221,8 +221,9 @@ if ( args.key ) {
|
|
|
221
221
|
}
|
|
222
222
|
|
|
223
223
|
// Find all of the potential target dirs. Utilize .gitignore to ignore files
|
|
224
|
+
const gitignore = parse( fs.readFileSync( '.gitignore' ) )
|
|
224
225
|
const opt = {
|
|
225
|
-
ignore :
|
|
226
|
+
ignore : gitignore.patterns,
|
|
226
227
|
}
|
|
227
228
|
|
|
228
229
|
const ahoy = glob.sync( '*/', opt )
|