diff --git a/package.json b/package.json index a833f74..aaf0b14 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nick.heiner/jscodemod", - "version": "1.2.1", + "version": "1.2.2", "description": "JS codemod runner", "homepage": "https://github.com/NickHeiner/jscodemod", "main": "build/index.js", diff --git a/src/index.ts b/src/index.ts index 71a9a66..763de79 100644 --- a/src/index.ts +++ b/src/index.ts @@ -94,7 +94,7 @@ function getProgressUI(logOpts: Pick, total * writing tests which by default ran simultaneously. 1 simultaneous worker pool took ~5 seconds, 2 took ~20, 3 took * ~50, etc. */ -export const defaultPiscinaLowerBoundInclusive = 20; +export const defaultPiscinaLowerBoundInclusive = 500; async function transformCode( codemod: Codemod, @@ -275,6 +275,7 @@ async function jscodemod( async function getInputFilesBeforeIgnores() { if (inputFilesPatterns) { + // Possible glob bug: https://github.com/sindresorhus/globby/issues/86 return log.logPhase({ phase: 'globbing', level: 'debug',