diff --git a/package-lock.json b/package-lock.json index c738b0f..1a4a6e4 100644 Binary files a/package-lock.json and b/package-lock.json differ diff --git a/package.json b/package.json index 61fb68f..4198e3b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fwdekker.com", - "version": "0.38.4", + "version": "0.38.5", "description": "The source code of [my personal website](https://fwdekker.com/).", "author": "Felix W. Dekker", "browser": "dist/bundle.js", @@ -24,9 +24,9 @@ }, "devDependencies": { "@istanbuljs/nyc-config-typescript": "^1.0.1", - "@types/chai": "^4.2.12", + "@types/chai": "^4.2.14", "@types/js-cookie": "^2.2.6", - "@types/mocha": "^8.0.3", + "@types/mocha": "^8.0.4", "@types/semver": "^6.2.1", "chai": "^4.2.0", "grunt": "^1.3.0", @@ -39,12 +39,12 @@ "grunt-webpack": "^4.0.2", "jsdom": "^16.4.0", "jsdom-global": "^3.0.2", - "mocha": "^8.1.3", + "mocha": "^8.2.1", "nyc": "^15.1.0", - "ts-loader": "^8.0.4", - "ts-node": "^9.0.0", - "typescript": "^4.0.3", - "webpack": "^4.44.2", - "webpack-cli": "^3.3.12" + "ts-loader": "^8.0.11", + "ts-node": "^9.1.0", + "typescript": "^4.1.2", + "webpack": "^5.10.0", + "webpack-cli": "^4.2.0" } } diff --git a/src/main/js/FileSystem.ts b/src/main/js/FileSystem.ts index 624ce35..ff0a59a 100644 --- a/src/main/js/FileSystem.ts +++ b/src/main/js/FileSystem.ts @@ -82,7 +82,7 @@ export class FileSystem { "home": new Directory({ "felix": new Directory({ "pgp.pub": new File("https://static.fwdekker.com/misc/pgp.pub.txt", "lnk"), - "privacy-policy.html": new File("https://fwdekker.com/privacy/", "lnk"), + "privacy.lnk": new File("https://fwdekker.com/privacy/"), "resume.pdf": new File("https://static.fwdekker.com/misc/resume.pdf", "lnk"), }), }), diff --git a/tsconfig.json b/tsconfig.json index eedddcb..c32f853 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,11 +1,12 @@ { - "compilerOptions": { - "target": "es2019", - "strict": true, - "rootDir": "./src/main/js/", - "outDir": "./dist/js/" - }, - "include": [ - "src/main/js/**/*.ts" - ] + "compilerOptions": { + "target": "es2019", + "strict": true, +// "noUncheckedIndexedAccess": true, + "rootDir": "./src/main/js/", + "outDir": "./dist/js/" + }, + "include": [ + "src/main/js/**/*.ts" + ] }