Skip to content
This repository was archived by the owner on Jul 2, 2024. It is now read-only.

Commit d778135

Browse files
committed
Move normalization presentation to rdbms sources (fixes GH-202)
1 parent 4e2227c commit d778135

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/pres/normalization/index.html renamed to src/rdbms/_presentations/normalization.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -440,8 +440,8 @@ <h3>Requirements</h3>
440440
<caption>Player Inventory</caption>
441441
<thead>
442442
<tr id="table--1nf__username-item_type">
443-
<th>username</th>
444-
<th>item_type</th>
443+
<th class="primary-key">username</th>
444+
<th class="primary-key">item_type</th>
445445
<th>item_quantity</th>
446446
</tr>
447447
</thead>

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const config = {
2121
plugins: [
2222
new MiniCSSExtractPlugin({filename: "css/main.min.css"}),
2323
new HTMLWebpackPlugin({
24-
template: path.resolve(BASE_DIR, "pres", "normalization", "index.html"),
24+
template: path.resolve(BASE_DIR, "rdbms", "_presentations", "normalization.html"),
2525
filename: path.resolve(BUILD_DIR, "normalization", "index.html")
2626
}),
2727
],

0 commit comments

Comments
 (0)