fix scripts folder text (#24609)

This commit is contained in:
Alexandru Tasica 2022-05-25 16:56:35 +03:00 committed by GitHub
parent a2505792ed
commit 2c68776abe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ async function downloadRegressionBuild() {
// For React versions earlier than 18.0.0, we explicitly scheduler v0.20.1, which
// is the first version that has unstable_mock, which DevTools tests need, but also
// has Scheduler.unstable_trace, which, although we don't use in DevTools tests
// is imported by older React versions and will break if it's not ther
// is imported by older React versions and will break if it's not there
if (semver.lte(semver.coerce(version).version, '18.0.0')) {
await exec(`npm install --prefix ${REGRESSION_FOLDER} scheduler@0.20.1`);
}

View File

@ -112,7 +112,7 @@ const argv = yargs
},
sourceMaps: {
describe:
'Enable inline source maps when tranforming source files with Jest. Useful for debugging, but makes it slower.',
'Enable inline source maps when transforming source files with Jest. Useful for debugging, but makes it slower.',
type: 'boolean',
default: false,
},