Implement password generator

We manually merged the contents of branch `password-generator-thesis`
onto a new branch, because the typescript migration changes broke the
mergeability of the existing implementation

#327
This commit is contained in:
jom 2022-01-26 14:12:44 +01:00 committed by ganthern
parent 522f51d584
commit 4162c65761
18 changed files with 38294 additions and 95 deletions

View file

@ -57,6 +57,7 @@ export async function buildWebapp({version, stage, host, measure, minify, projec
console.log("started copying images", measure())
await fs.copy(path.join(projectDir, '/resources/images'), path.join(projectDir, '/build/dist/images'))
await fs.copy(path.join(projectDir, '/resources/favicon'), path.join(projectDir, 'build/dist/images'))
await fs.copy(path.join(projectDir, '/resources/wordlibrary.json'), path.join(projectDir, 'build/dist/wordlibrary.json'))
await fs.copy(path.join(projectDir, '/src/braintree.html'), path.join(projectDir, '/build/dist/braintree.html'))
console.log("started bundling", measure())