also compile and bundle vendor CSS
authorDan Allen <dan@opendevise.com>
Fri, 6 Nov 2020 23:26:34 +0000 (16:26 -0700)
committerDan Allen <dan@opendevise.com>
Fri, 6 Nov 2020 23:26:34 +0000 (16:26 -0700)
gulp.d/tasks/build.js

index d6eabb7..7a5e929 100644 (file)
@@ -96,7 +96,7 @@ module.exports = (src, dest, preview) => () => {
     // NOTE use this statement to bundle a JavaScript library that cannot be browserified, like jQuery
     //vfs.src(require.resolve('<package-name-or-require-path>'), opts).pipe(concat('js/vendor/<library-name>.js')),
     vfs
-      .src('css/site.css', { ...opts, sourcemaps })
+      .src(['css/site.css', 'css/vendor/*.css'], { ...opts, sourcemaps })
       .pipe(postcss((file) => ({ plugins: postcssPlugins, options: { file } }))),
     vfs.src('font/*.{ttf,woff*(2)}', opts),
     vfs