forked from tools/josh
1
0
Fork 0

Change privacy link

And update dependencies.
This commit is contained in:
Florine W. Dekker 2020-12-07 08:14:23 +01:00
parent 55bcf5c809
commit fd598bbefe
Signed by: FWDekker
GPG Key ID: B1B567AF58D6EE0F
4 changed files with 20 additions and 19 deletions

BIN
package-lock.json generated

Binary file not shown.

View File

@ -1,6 +1,6 @@
{ {
"name": "fwdekker.com", "name": "fwdekker.com",
"version": "0.38.4", "version": "0.38.5",
"description": "The source code of [my personal website](https://fwdekker.com/).", "description": "The source code of [my personal website](https://fwdekker.com/).",
"author": "Felix W. Dekker", "author": "Felix W. Dekker",
"browser": "dist/bundle.js", "browser": "dist/bundle.js",
@ -24,9 +24,9 @@
}, },
"devDependencies": { "devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1", "@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.12", "@types/chai": "^4.2.14",
"@types/js-cookie": "^2.2.6", "@types/js-cookie": "^2.2.6",
"@types/mocha": "^8.0.3", "@types/mocha": "^8.0.4",
"@types/semver": "^6.2.1", "@types/semver": "^6.2.1",
"chai": "^4.2.0", "chai": "^4.2.0",
"grunt": "^1.3.0", "grunt": "^1.3.0",
@ -39,12 +39,12 @@
"grunt-webpack": "^4.0.2", "grunt-webpack": "^4.0.2",
"jsdom": "^16.4.0", "jsdom": "^16.4.0",
"jsdom-global": "^3.0.2", "jsdom-global": "^3.0.2",
"mocha": "^8.1.3", "mocha": "^8.2.1",
"nyc": "^15.1.0", "nyc": "^15.1.0",
"ts-loader": "^8.0.4", "ts-loader": "^8.0.11",
"ts-node": "^9.0.0", "ts-node": "^9.1.0",
"typescript": "^4.0.3", "typescript": "^4.1.2",
"webpack": "^4.44.2", "webpack": "^5.10.0",
"webpack-cli": "^3.3.12" "webpack-cli": "^4.2.0"
} }
} }

View File

@ -82,7 +82,7 @@ export class FileSystem {
"home": new Directory({ "home": new Directory({
"felix": new Directory({ "felix": new Directory({
"pgp.pub": new File("https://static.fwdekker.com/misc/pgp.pub.txt", "lnk"), "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"), "resume.pdf": new File("https://static.fwdekker.com/misc/resume.pdf", "lnk"),
}), }),
}), }),

View File

@ -1,11 +1,12 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "es2019", "target": "es2019",
"strict": true, "strict": true,
"rootDir": "./src/main/js/", // "noUncheckedIndexedAccess": true,
"outDir": "./dist/js/" "rootDir": "./src/main/js/",
}, "outDir": "./dist/js/"
"include": [ },
"src/main/js/**/*.ts" "include": [
] "src/main/js/**/*.ts"
]
} }