Skip to content

Commit c1e09f3

Browse files
committed
chore: does this fix node 10 test
1 parent 3160962 commit c1e09f3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/lib/steps/setupRedirects.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ const setupRedirects = async (publishPath) => {
7474
const basePathSortFunc = (a, b) => {
7575
if (a.target.includes(basePath) && b.target.includes(basePath)) {
7676
return 0
77-
} if (a.target.includes(basePath) && !b.target.includes(basePath)) {
77+
}
78+
if (a.target.includes(basePath) && !b.target.includes(basePath)) {
7879
return -1
79-
// } else if (!a.target.includes(basePath) && b.target.includes(basePath)) {
80-
// return 0
81-
}
82-
return 1
83-
80+
// } else if (!a.target.includes(basePath) && b.target.includes(basePath)) {
81+
// return 0
82+
}
83+
return 1
8484
}
8585
const allRedirects = hasBasePath
8686
? [...sortedStaticRedirects.sort(basePathSortFunc), ...sortedDynamicRedirects.sort(basePathSortFunc)]

0 commit comments

Comments
 (0)