Skip to content

Commit bb236d6

Browse files
committed
Fix comment typos
1 parent 1f7cb8a commit bb236d6

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

scripts/circleci/setup-angular-snapshots.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
/**
22
* Script that sets up the Angular snapshot github builds. We set up the snapshot builds by
33
* overwriting the versions in the "package.json" and taking advantage of Yarn's resolutions
4-
* feature. Yarn resolutions will be used to flatten nested Angular packages because otherwise
5-
* Yarn to resolve multiple versions of Angular packages because dependencies are not always
6-
* flattened. See:
4+
* feature. Yarn resolutions will be used to flatten nested Angular packages because by default
5+
* Yarn does not flatten any dependency. See:
76
*
87
* node_modules/compiler@snapshot
98
* node_modules/compiler-cli@snapshot
@@ -46,7 +45,7 @@ angularPackages.forEach(packageName => {
4645
// to explicitly set the version for the package listed in the project "package.json".
4746
packageJson.dependencies[packageName] = buildsUrl;
4847

49-
// In case this dependencies was previously a dev dependency, just remove it because we
48+
// In case this dependency was previously a dev dependency, just remove it because we
5049
// re-added it as a normal dependency for simplicity.
5150
delete packageJson.devDependencies[packageName];
5251
});

0 commit comments

Comments
 (0)