pugで効率化【実用編4】

Pocket

珍しく、連続で投稿です。

pugで効率化【実用編3】とファイル構成の違うパターンです。

個人的にはこっちの方が好きかもです。

〇下記のようなファイル構成でプロジェクト作成します。

プロジェクトファイル
|___ package.json
|___ package-lock.json
|___ gulpfile.js
|___ node_modules
|
|___ pug
|    |___ _layout.pug
|    |___ _header.pug
|    |___ _footer.pug
|    |___ _meta.pug
|    |___ index.pug
|    |___ file01
|         |___ index.pug
|
|___ sass
|    |___ common.scss
|    |___ index.scss
|    |___ file01
|         |___index.scss
|
|___ images
|    |___demo.jpg
|    |___file01
|        |___demo01.jpg
|
|___ www
     |___ css
     |    |___index.css
     |    |___common.css
     |
     |___images
     |   |___demo.jpg 
     |
     |___index.html
     |
     |___file01
         |___css
         |   |___index.css
         |
         |___images
         |   |___demo01.jpg
         |
         |___index.html

○gulpfile.js

  1. //plug-in
  2. var gulp = require('gulp');
  3. var plumber = require('gulp-plumber');
  4. var autoprefixer = require('gulp-autoprefixer');
  5. var sass = require("gulp-sass");
  6. var pug = require('gulp-pug');
  7. var imagemin = require('gulp-imagemin');
  8. var pngquant = require('imagemin-pngquant');
  9. var mozjpeg = require('imagemin-mozjpeg');
  10. var rename = require("gulp-rename");
  11.  
  12.  
  13. //sass
  14. gulp.task("sass", function() {
  15. return gulp.src('sass/**/*.scss')//gulp4.0対応
  16. .pipe(plumber())
  17. .pipe(sass())
  18. .pipe(autoprefixer({
  19. cascade: false/*整形off*/
  20. }))
  21. .pipe(rename(function(path){
  22. path.dirname += '/css';
  23. }))
  24. .pipe(gulp.dest("www"));
  25. });
  26.  
  27. //pug
  28. gulp.task("pug", function() {
  29. return gulp.src('pug/**/[^_]*.pug')
  30. .pipe(plumber())
  31. .pipe(pug({
  32. pretty: true
  33. }))
  34. .pipe(gulp.dest("www"));
  35. });
  36.  
  37. gulp.task('imagemin',function(){
  38. return gulp.src(['images/**/*'])
  39. .pipe(imagemin(
  40. [
  41. pngquant({
  42. quality: [ 0.65, 0.8 ],
  43. speed: 1
  44. }),
  45. mozjpeg({ quality: 80 }),
  46. imagemin.svgo(),//imagemin同梱
  47. imagemin.gifsicle()//imagemin同梱
  48. ]
  49. ))
  50. .pipe(rename(function(path){
  51. path.dirname += '/images';
  52. }))
  53. .pipe(gulp.dest('www'));
  54. });
  55.  
  56.  
  57. //watch
  58. gulp.task('watch', function(){
  59. gulp.watch('sass/**/*.scss', gulp.task('sass'));
  60. gulp.watch('pug/**/*.pug', gulp.task('pug'));
  61. gulp.watch('images/**/*', gulp.task('imagemin'));
  62. });
  63.  
  64. gulp.task('default', gulp.parallel('sass', 'pug', 'imagemin', 'watch'));
  65.  

<ポイント>

・sass、imagesの処理の最後にrenameを用いて、wwwフォルダに出力するファイルに名前をつけるように記述しています。sassの場合はwwwに、ソースのディレクトリ/css/〇〇.css。imagesの場合はwwwに、ソースのディレクトリ/images/〇〇.jpg。

○pug/index.pug

  1. extends _layout.pug
  2.  
  3. block _addMeta
  4.  
  5. - var path ='';
  6.  
  7. //-meta
  8. title タイトルだよ
  9. meta(name="description", content="ディスクリプションだよ")
  10. meta(name="keywords", content="キーワード1, キーワード2")
  11. meta(name="viewport", content="width=device-width, initial-scale=1.0")
  12. link(rel="stylesheet" href=`${path}`+"css/common.css")
  13. link(rel="stylesheet" href="css/index.css")
  14.  
  15.  
  16. block mainContents
  17. main(ontouchstart="")
  18. .block
  19. p.title トップなうだよ
  20. img(src="images/demo.jpg")
  21. a(href=`${path}`+"index.html") トップページ
  22. a(href=`${path}`+"file01/index.html") ファイル01
  23.  

○pug/file01/index.pug

  1. extends ../_layout.pug
  2.  
  3. block _addMeta
  4.  
  5. - var path ='../';
  6.  
  7. //-meta
  8. title タイトルだよ
  9. meta(name="description", content="ディスクリプションだよ")
  10. meta(name="keywords", content="キーワード1, キーワード2")
  11. meta(name="viewport", content="width=device-width, initial-scale=1.0")
  12. link(rel="stylesheet" href=`${path}`+"css/common.css")
  13. link(rel="stylesheet" href="css/index.css")
  14.  
  15.  
  16. block mainContents
  17. main(ontouchstart="")
  18. .block
  19. p.title ファイル01なうだよ
  20. img(src="images/demo01.jpg")
  21. a(href=`${path}`+"index.html") トップページ
  22. a(href="index.html") ファイル01
  23.  

<ポイント>

・ディレクトリと共通となるファイルパスには${path}を用いて、パスを指定します。コンテンツ固有のものには、stylesheetであればcss/〇〇.css、imgであればimages/〇〇.jpgといったように、パスを気にせずに書けます。

pugで効率化【実用編3】と比較して好きな方を使えば良いかと。

細かい設定が分からない場合はこちらの過去記事を読んでみてください。

今回は以上です。