From 5500e28ca4d792d94dd5130f604cb3d2ef3922e2 Mon Sep 17 00:00:00 2001 From: Ken Date: Sat, 23 Feb 2019 08:16:32 -0800 Subject: [PATCH] copies the index.html at the root for the day1 steps --- docs/step1-04/index.html | 15 +++++++++++++++ docs/step1-05/index.html | 15 +++++++++++++++ docs/step1-06/index.html | 15 +++++++++++++++ docs/step1-07/index.html | 15 +++++++++++++++ webpack.config.js | 2 +- 5 files changed, 61 insertions(+), 1 deletion(-) create mode 100644 docs/step1-04/index.html create mode 100644 docs/step1-05/index.html create mode 100644 docs/step1-06/index.html create mode 100644 docs/step1-07/index.html diff --git a/docs/step1-04/index.html b/docs/step1-04/index.html new file mode 100644 index 0000000..dadfb94 --- /dev/null +++ b/docs/step1-04/index.html @@ -0,0 +1,15 @@ + + + + + + + +
+ +
+ + diff --git a/docs/step1-05/index.html b/docs/step1-05/index.html new file mode 100644 index 0000000..dadfb94 --- /dev/null +++ b/docs/step1-05/index.html @@ -0,0 +1,15 @@ + + + + + + + +
+ +
+ + diff --git a/docs/step1-06/index.html b/docs/step1-06/index.html new file mode 100644 index 0000000..dadfb94 --- /dev/null +++ b/docs/step1-06/index.html @@ -0,0 +1,15 @@ + + + + + + + +
+ +
+ + diff --git a/docs/step1-07/index.html b/docs/step1-07/index.html new file mode 100644 index 0000000..dadfb94 --- /dev/null +++ b/docs/step1-07/index.html @@ -0,0 +1,15 @@ + + + + + + + +
+ +
+ + diff --git a/webpack.config.js b/webpack.config.js index 448296f..e32cd27 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -78,7 +78,7 @@ module.exports = function(env, argv) { }), ...Object.keys(entries).map(entry => { return { - from: `${entry}/../**/*.md`, + from: `${entry}/../*.+(md|html)`, to: outPath }; }),