@fishawack/lab-env 4.32.0 → 4.32.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  ## Changelog
2
2
 
3
+ ### 4.32.1 (2024-07-15)
4
+ * [Bug] added more ci skip steps to dianose command
5
+
3
6
  ### 4.32.0 (2024-07-12)
4
7
  * [Feature] added ci flag to skip creating ssh keys
5
8
 
@@ -83,9 +83,11 @@ module.exports = [
83
83
  }
84
84
  }
85
85
 
86
- while(!await test.egnyte() || !await egnyte.check()){
87
- await guide.egnyte(argv);
88
- };
86
+ if(!argv.ci){
87
+ while(!await test.egnyte() || !await egnyte.check()){
88
+ await guide.egnyte(argv);
89
+ };
90
+ }
89
91
 
90
92
  if(argv.legacy){
91
93
  while(!await test.watertight()){
@@ -99,8 +101,10 @@ module.exports = [
99
101
  await guide.misc(argv);
100
102
  };
101
103
 
102
- while(!await test.bitbucket() || !await bitbucket.check()){
103
- await guide.bitbucket(argv);
104
+ if(!argv.ci){
105
+ while(!await test.bitbucket() || !await bitbucket.check()){
106
+ await guide.bitbucket(argv);
107
+ }
104
108
  }
105
109
 
106
110
  if(argv.legacy){
@@ -111,14 +115,16 @@ module.exports = [
111
115
  }
112
116
  }
113
117
 
114
- const userRepoName = vars.misc.bitbucket.username.split('@')[0].replace(/\./, '-');
115
-
116
- // Check ability to create and delete Bitbucket repos
117
- if(!await bitbucket.exists(userRepoName)){
118
- await bitbucket.fork(userRepoName, {name: 'boilerplate'});
118
+ if(!argv.ci){
119
+ const userRepoName = vars.misc.bitbucket.username.split('@')[0].replace(/\./, '-');
120
+
121
+ // Check ability to create and delete Bitbucket repos
122
+ if(!await bitbucket.exists(userRepoName)){
123
+ await bitbucket.fork(userRepoName, {name: 'boilerplate'});
124
+ }
125
+
126
+ await bitbucket.remove(userRepoName);
119
127
  }
120
-
121
- await bitbucket.remove(userRepoName);
122
128
  }
123
129
 
124
130
  // Update diagnosis version in ~/.lab-env config file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fishawack/lab-env",
3
- "version": "4.32.0",
3
+ "version": "4.32.1",
4
4
  "description": "Docker manager for FW",
5
5
  "main": "cli.js",
6
6
  "scripts": {