This is an automated email from the ASF dual-hosted git repository.
enorman pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-starter-content.git
The following commit(s) were added to refs/heads/master by this push:
new 19d119a SLING-12969 The OpenSans fonts are corrupted by the build
process (#14)
19d119a is described below
commit 19d119a27caabe83bf2afa81166a6301f5243ed7
Author: Eric Norman <[email protected]>
AuthorDate: Mon Oct 20 08:42:20 2025 -0700
SLING-12969 The OpenSans fonts are corrupted by the build process (#14)
---
pom.xml | 2 +-
src/main/frontend/gulpfile.js | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/pom.xml b/pom.xml
index ac51b98..2cabe80 100644
--- a/pom.xml
+++ b/pom.xml
@@ -210,7 +210,7 @@
<goal>install-node-and-npm</goal>
</goals>
<configuration>
- <nodeVersion>v22.11.0</nodeVersion>
+ <nodeVersion>v22.20.0</nodeVersion>
</configuration>
</execution>
<execution>
diff --git a/src/main/frontend/gulpfile.js b/src/main/frontend/gulpfile.js
index 9ac592d..adaea02 100644
--- a/src/main/frontend/gulpfile.js
+++ b/src/main/frontend/gulpfile.js
@@ -50,7 +50,7 @@ gulp.task('styles', function() {
});
gulp.task('assets', function() {
- return gulp.src(['./src/{fonts,img}/**/*'])
+ return gulp.src(['./src/{fonts,img}/**/*'], { encoding: false })
.pipe(gulp.dest('./dist/initial-content/content/starter'));
});