changed step names

This commit is contained in:
Micah Godbolt
2019-02-14 10:15:39 -08:00
parent d0d6a788e2
commit 41a79e8883
34 changed files with 16 additions and 14 deletions

View File

@@ -1,13 +1,15 @@
<div style="display: inline-flex; flex-direction: column"> <div style="display: inline-flex; flex-direction: column">
<a href="/step01/">Step01</a> <h2>Day 1</h2>
<a href="/step02/">Step02</a> <a href="/step1-01/">Step 1</a>
<a href="/step03/">Step03</a> <a href="/step1-02/">Step 2</a>
<a href="/step04/">Step04</a> <a href="/step1-03/">Step 3</a>
<a href="/step05/">Step05</a> <a href="/step1-04/">Step 4</a>
<a href="/step06/">Step06</a> <a href="/step1-05/">Step 5</a>
<a href="/step07/">Step07</a> <a href="/step1-06/">Step 6</a>
<a href="/step08/">Step08</a> <a href="/step1-07/">Step 7</a>
<a href="/step09/">Step09</a> <a href="/step1-08/">Step 8</a>
<a href="/step2-01/">Step2-01</a> <a href="/step1-09/">Step 9</a>
<h2>Day 2</h2>
<a href="/step2-01/">Step 1</a>
<a href="/playground/">Playground</a> <a href="/playground/">Playground</a>
</div> </div>

View File

@@ -3,10 +3,10 @@ const HtmlWebpackPlugin = require('html-webpack-plugin');
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
const entries = { const entries = {
step04: './step04/src/index', 'step1-04': './step1-04/src/index',
step05: './step05/src/index', 'step1-05': './step1-05/src/index',
step06: './step06/src/index', 'step1-06': './step1-06/src/index',
step07: './step07/src/index', 'step1-07': './step1-07/src/index',
'step2-01': './step2-01/src/index', 'step2-01': './step2-01/src/index',
playground: './playground/src/index' playground: './playground/src/index'
}; };