@videinfra/static-website-builder 2.2.1 → 2.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/package.json +1 -1
- package/vendor/gulp-sass/index.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
|
7
|
+
## [2.2.2] - 2026-04-08
|
|
8
|
+
### Fixed
|
|
9
|
+
- Fixed gulp-sass missing error message
|
|
10
|
+
|
|
7
11
|
## [2.2.1] - 2026-03-12
|
|
8
12
|
### Fixed
|
|
9
13
|
- Fixed env variables not being set to empty string when not found
|
package/package.json
CHANGED
|
@@ -36,7 +36,7 @@ const filePush = (file, css, callback) => {
|
|
|
36
36
|
const handleError = (error, file, callback) => {
|
|
37
37
|
const filePath = (error.file === 'stdin' ? file.path : error.file) || file.path;
|
|
38
38
|
const relativePath = path.relative(process.cwd(), filePath);
|
|
39
|
-
const message = `${chalk.underline(relativePath)}\n${error.formatted}`;
|
|
39
|
+
const message = `${chalk.underline(relativePath)}\n${error.formatted || error.message}`;
|
|
40
40
|
|
|
41
41
|
error.messageFormatted = message;
|
|
42
42
|
error.messageOriginal = error.message;
|