ic-mops 0.27.2 → 0.27.3

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.
@@ -73,7 +73,6 @@ export async function install(pkg: string, version = '', {verbose = false, silen
73
73
 
74
74
  // GitHub Actions fails with "fetch failed" if there are multiple concurrent actions
75
75
  if (process.env.GITHUB_ENV) {
76
- console.log('Running in GitHub Actions, reducing threads to 4');
77
76
  threads = 4;
78
77
  }
79
78
 
@@ -62,7 +62,6 @@ export async function install(pkg, version = '', { verbose = false, silent = fal
62
62
  let threads = 16;
63
63
  // GitHub Actions fails with "fetch failed" if there are multiple concurrent actions
64
64
  if (process.env.GITHUB_ENV) {
65
- console.log('Running in GitHub Actions, reducing threads to 4');
66
65
  threads = 4;
67
66
  }
68
67
  await parallel(threads, filesIds, async (fileId) => {
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ export {};