質問編集履歴
4
タグを修正しました
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|
3
ファイル構成の抜けを修正しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -512,7 +512,9 @@
|
|
512
512
|
|
513
513
|
│ └─ _theme.head.scss
|
514
514
|
|
515
|
-
├─ reset ──
|
515
|
+
├─ reset ─┬─ _normalize.scss
|
516
|
+
|
517
|
+
│ └─ _ress.scss
|
516
518
|
|
517
519
|
└─ vender ─┬─ _swiper.min.scss
|
518
520
|
|
2
ディレクトリ構成を追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -466,6 +466,66 @@
|
|
466
466
|
|
467
467
|
```
|
468
468
|
|
469
|
+
##### ファイル構成
|
470
|
+
|
471
|
+
```
|
472
|
+
|
473
|
+
dev ─┬─ webpack.config.js
|
474
|
+
|
475
|
+
├─ gulpfile.js
|
476
|
+
|
477
|
+
├─ package.json
|
478
|
+
|
479
|
+
├─ package-lock.js
|
480
|
+
|
481
|
+
├─ tsconfig.json
|
482
|
+
|
483
|
+
├─ webpack.config.js
|
484
|
+
|
485
|
+
├─ ejs ─── (略)
|
486
|
+
|
487
|
+
├─ js ─── (略)
|
488
|
+
|
489
|
+
├─ ts ─── (略)
|
490
|
+
|
491
|
+
├─ node_modules
|
492
|
+
|
493
|
+
└─ sass ─┬─ style.scss
|
494
|
+
|
495
|
+
├─ config ─── _config.scss
|
496
|
+
|
497
|
+
├─ mixin ─── _mixin.scss
|
498
|
+
|
499
|
+
├─ module ─┬─ _base.scss
|
500
|
+
|
501
|
+
│ ├─ _guide.scss
|
502
|
+
|
503
|
+
│ ├─ _head.scss
|
504
|
+
|
505
|
+
│ ├─ _lt.scss
|
506
|
+
|
507
|
+
│ ├─ _pc.scss
|
508
|
+
|
509
|
+
│ ├─ _sp.scss
|
510
|
+
|
511
|
+
│ ├─ _tb.scss
|
512
|
+
|
513
|
+
│ └─ _theme.head.scss
|
514
|
+
|
515
|
+
├─ reset ─── _normalize.scss
|
516
|
+
|
517
|
+
└─ vender ─┬─ _swiper.min.scss
|
518
|
+
|
519
|
+
└─ _swiper.scss
|
520
|
+
|
521
|
+
dist ─┬─ js
|
522
|
+
|
523
|
+
├─ css
|
524
|
+
|
525
|
+
└─ index.html
|
526
|
+
|
527
|
+
```
|
528
|
+
|
469
529
|
|
470
530
|
|
471
531
|
お知恵をお貸しいただけると幸いです。
|
1
余計な文言の削除
test
CHANGED
File without changes
|
test
CHANGED
@@ -308,7 +308,7 @@
|
|
308
308
|
|
309
309
|
|
310
310
|
|
311
|
-
// scssをコンパイルするタスク
|
311
|
+
// scssをコンパイルするタスク
|
312
312
|
|
313
313
|
function css() {
|
314
314
|
|