We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 742a837 commit 9c711eeCopy full SHA for 9c711ee
test_downstream_projects.js
@@ -44,7 +44,12 @@ function localPublish(packageDir) {
44
}
45
46
function installUpstreamDeps(upstreamPackages) {
47
- upstreamPackages.forEach(upstream => util._exec('npx yalc add ' + upstream));
+ upstreamPackages.forEach(upstream => {
48
+ util._exec('npx yalc add ' + upstream);
49
+ });
50
+ // Install updated deps from the upstream
51
+ // If local changes point to a new version of @uirouter/core, for example
52
+ util._exec('npx yarn');
53
54
55
function runTests() {
0 commit comments