Skip to content

Commit c55b2fa

Browse files
authored
Development (#46)
* Fix minimist build issue. * Minor dependency updates to fix Safari bug. * Better detect node-sass build errors.
1 parent dadb717 commit c55b2fa

9 files changed

Lines changed: 1542 additions & 15203 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
## 2.9.0
1+
## 2.8.5
2+
3+
* Minor dependency updates to fix Safari bug.
4+
* Better detect node-sass build errors.
5+
6+
## 2.8.4
27

38
* Updated timezones to 2021a, with new ability to update timezones automatically, while running.
49
* New marquee weather summary.

build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -770,7 +770,7 @@ async function doClientBuild(): Promise<void> {
770770
break;
771771
}
772772
catch (err) {
773-
if (i === 0 && /node?sass/i.test(err.message ?? err.toString())) {
773+
if (i === 0 && /node.sass/i.test(err.message ?? err.toString())) {
774774
write(chalk.paleYellow(' ' + FAIL_MARK + ' (rebuilding node-sass) '));
775775
await monitorProcess(spawn('npm ', uid, prod ? ['rebuild', 'node-sass'] : [], opts), spin);
776776
}

0 commit comments

Comments
 (0)