cob-cli 2.34.0 → 2.35.0

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.
@@ -8,7 +8,7 @@ async function getRepos(token) {
8
8
  console.log("Clone/update all accessible repos ...");
9
9
 
10
10
  try {
11
- const response = await axios.get( "https://gitlab.com/api/v4/projects?membership=true\&private_token="+token+"\&search=server_", { headers: { Accept: "application/json", "Accept-Encoding": "identity" } } )
11
+ const response = await axios.get( "https://gitlab.com/api/v4/projects?membership=true\&private_token="+token+"\&per_page=100&&archived=false&search=server_", { headers: { Accept: "application/json", "Accept-Encoding": "identity" } } )
12
12
  serverRepos = response.data
13
13
  if (serverRepos.length == 0) throw new Error("\nError: ".red + " no server repo found\n");
14
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cob-cli",
3
- "version": "2.34.0",
3
+ "version": "2.35.0",
4
4
  "description": "A command line utility to help Cult of Bits partners develop with higher speed and reusing common code and best practices.",
5
5
  "preferGlobal": true,
6
6
  "repository": {