Skip to content

Commit

Permalink
Update gulpfile
Browse files Browse the repository at this point in the history
  • Loading branch information
henryaj committed Aug 12, 2024
1 parent da83c09 commit 5bb3426
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ getPaths = () => {
liquid: 'pages/**/*.liquid',
liquidRoot: 'pages/',
includes: 'pages/include/',
layouts: 'pages/layouts'
layouts: 'pages/layouts',
wellKnown: 'pages/well-known/**/*'
},
js: {
all: "js/**/*",
Expand Down Expand Up @@ -135,6 +136,7 @@ getPaths = () => {
fonts: 'dist/assets/fonts',
video: 'dist/assets/video',
documentation: 'dist/documentation',
wellKnown: 'dist/well-known',
exclude: ['!**/desktop.ini', '!**/.DS_store'],
},
copyDependencies: copyDeps,
Expand Down Expand Up @@ -301,7 +303,7 @@ gulp.task('mrarejs', async (done) => {

// Assets
gulp.task('copy-assets', function () {
return gulp.src(paths.assets.all, {
return gulp.src([paths.assets.all, paths.pages.wellKnown], {
base: paths.assets.folder
})
.pipe(newer(paths.dist.assets))
Expand Down

0 comments on commit 5bb3426

Please sign in to comment.