adding documentation

This commit is contained in:
Ken
2019-02-23 07:56:29 -08:00
parent 672099ccdd
commit 221485a940
59 changed files with 3448 additions and 102 deletions

View File

@@ -76,6 +76,12 @@ module.exports = function() {
to: outPath
};
}),
...Object.keys(entries).map(entry => {
return {
from: `${entry}/../**/*.md`,
to: outPath
};
}),
{
from: 'assets/**/*',
to: outPath
@@ -84,10 +90,6 @@ module.exports = function() {
from: 'index.html',
to: outPath
},
{
from: '*.md',
to: outPath
},
...nonWebpackedEntries.map(entry => ({ from: `${entry}/**/*`, to: outPath }))
]),
new ForkTsCheckerWebpackPlugin({