Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo #11603

Merged
merged 1 commit into from May 24, 2020
Merged

Fix typo #11603

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion jest.config.js
@@ -1,4 +1,4 @@
// These packages undet the @babel namespace aren't in this monorepo.
// These packages under the @babel namespace aren't in this monorepo.
const externalBabelPackages = [
"plugin-syntax-async-generators",
"plugin-syntax-bigint",
Expand Down
4 changes: 2 additions & 2 deletions scripts/rollup-plugin-babel-source.js
Expand Up @@ -63,7 +63,7 @@ module.exports = function() {
path.join(packageFolder, "package.json")
);
} catch (e) {
// Some Babel packahes aren't in this repository, but in
// Some Babel packages aren't in this repository
return null;
}

Expand All @@ -76,7 +76,7 @@ module.exports = function() {

return path.join(
packageFolder,
// replace lib with src in the pkg.json entry
// replace lib with src in the package.json entry
filename.replace(/^(\.\/)?lib\//, "src/")
);
},
Expand Down