diff options
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | public/scripts/encryption.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package.json b/package.json index 76d05e8..64f25d8 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ "watch": "npm run debug && onchange public/styles/* -- npm run css & onchange public/scripts/* -- npm run debug", "css": "node-sass public/styles/main.sass dist/app.css && cp public/images/* dist/", "debug": "rm -r dist/* && npm run css && browserify public/scripts/main.js -o dist/app.js", - "build": "rm -r dist/* && node-sass public/styles/main.sass dist/app.css --output-style compressed && browserify public/scripts/main.js -o dist/temp.js && minify dist/temp.js > dist/app.js && pug views/index.pug --out dist && rm dist/temp*", + "build": "rm -r dist/* && node-sass public/styles/main.sass dist/app.css --output-style compressed && cp public/images/* dist/ && browserify public/scripts/main.js -o dist/temp.js && minify dist/temp.js > dist/app.js && pug views/index.pug --out dist && rm dist/temp*", "single": "rm -rf dist/* && node-sass public/styles/main.sass dist/app.css --output-style compressed && browserify public/scripts/main.js -o dist/temp.js && minify dist/temp.js > dist/app.js && rm dist/temp.* && pug views/index.pug --out dist && echo '<script>'$(cat dist/app.js)'</script>' >> dist/index.html && echo '<style>'$(cat dist/app.css)'</style>' >> dist/index.html && html-minifier --collapse-whitespace --remove-comments --remove-optional-tags --remove-redundant-attributes --remove-script-type-attributes --remove-tag-whitespace --use-short-doctype --minify-css true --minify-js true dist/index.html > dist/complete.html" }, "keywords": [ diff --git a/public/scripts/encryption.js b/public/scripts/encryption.js index 0e76b43..ea9fc70 100644 --- a/public/scripts/encryption.js +++ b/public/scripts/encryption.js @@ -345,7 +345,6 @@ const self = module.exports = { .then(async (components) => { const fingerprintHash = fingerprintJs.x64hash128(components.map(pair => pair.value) .join(), 31); - console.log(`[LOG] Your fingerprint is: ${fingerprintHash}`); let shaObj = new JsSHA('SHA3-512', 'TEXT'); shaObj.update(passphrase); const passphraseHash = shaObj.getHash('HEX'); @@ -370,6 +369,7 @@ const self = module.exports = { .then(async (components) => { const fingerprintHash = fingerprintJs.x64hash128(components.map(pair => pair.value) .join(), 31); + console.log(`[LOG] Your fingerprint is: ${fingerprintHash}`); const shaObj = new JsSHA('SHA3-512', 'TEXT'); shaObj.update(fingerprintHash); shaObj.update(Math.random() |