Upgrade dependencies

This commit is contained in:
Michal Vanko 2019-12-28 20:14:33 +01:00
parent 9a93331c68
commit 2bfd966d50
3 changed files with 726 additions and 491 deletions

1159
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -13,9 +13,9 @@
}, },
"dependencies": { "dependencies": {
"compression": "^1.7.4", "compression": "^1.7.4",
"date-fns": "^2.7.0", "date-fns": "^2.8.1",
"front-matter": "^3.0.2", "front-matter": "^3.0.2",
"marked": "^0.7.0", "marked": "^0.8.0",
"polka": "^0.5.2", "polka": "^0.5.2",
"ramda": "^0.26.1", "ramda": "^0.26.1",
"sirv": "^0.4.2" "sirv": "^0.4.2"
@ -23,18 +23,18 @@
"devDependencies": { "devDependencies": {
"npm-run-all": "^4.1.5", "npm-run-all": "^4.1.5",
"sapper": "^0.27.9", "sapper": "^0.27.9",
"svelte": "^3.12.1", "svelte": "^3.16.7",
"@babel/core": "^7.6.4", "@babel/core": "^7.7.7",
"@babel/plugin-syntax-dynamic-import": "^7.2.0", "@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.6.2", "@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.6.3", "@babel/preset-env": "^7.7.7",
"@babel/runtime": "^7.6.3", "@babel/runtime": "^7.7.7",
"rollup": "^1.26.3", "rollup": "^1.27.14",
"rollup-plugin-babel": "^4.3.3", "rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0", "rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0", "rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0", "rollup-plugin-replace": "^2.2.0",
"rollup-plugin-svelte": "^5.1.0", "rollup-plugin-svelte": "^5.1.1",
"rollup-plugin-terser": "^5.1.2" "rollup-plugin-terser": "^5.1.3"
} }
} }

View File

@ -1,9 +1,9 @@
<script> <script>
export let segment; // export let segment;
</script> </script>
<style> <style>
/* nav { /* nav {
border-bottom: 1px solid rgba(255,62,0,0.1); border-bottom: 1px solid rgba(255,62,0,0.1);
font-weight: 300; font-weight: 300;
padding: 0 1em; padding: 0 1em;
@ -15,7 +15,7 @@
} }
/* clearfix */ /* clearfix */
/* ul::after { /* ul::after {
content: ''; content: '';
display: block; display: block;
clear: both; clear: both;
@ -41,7 +41,7 @@
bottom: -1px; bottom: -1px;
} */ } */
/* a { /* a {
text-decoration: none; text-decoration: none;
padding: 1em 0.5em; padding: 1em 0.5em;
display: block; display: block;
@ -58,24 +58,24 @@
nav a { nav a {
padding: 0.4em 0.5em; padding: 0.4em 0.5em;
} }
</style> </style>
<nav> <nav>
<!-- <ul> --> <!-- <ul> -->
<!-- <li><a class='{segment === undefined ? "selected" : ""}' href='.'>home</a></li> --> <!-- <li><a class='{segment === undefined ? "selected" : ""}' href='.'>home</a></li> -->
<!-- <li><a class='{segment === "portfolio" ? "selected" : ""}' href='portfolio'>portfolio</a></li> --> <!-- <li><a class='{segment === "portfolio" ? "selected" : ""}' href='portfolio'>portfolio</a></li> -->
<!-- for the blog link, we're using rel=prefetch so that Sapper prefetches <!-- for the blog link, we're using rel=prefetch so that Sapper prefetches
the blog data when we hover over the link or tap it on a touchscreen --> the blog data when we hover over the link or tap it on a touchscreen -->
<!-- <li><a rel=prefetch class='{segment === "blog" ? "selected" : ""}' href='blog'>blog</a></li> --> <!-- <li><a rel=prefetch class='{segment === "blog" ? "selected" : ""}' href='blog'>blog</a></li> -->
<!-- </ul> --> <!-- </ul> -->
<div class="page-navigation"> <div class="page-navigation">
<a href="portfolio#personal-information">About</a> <a href="portfolio#personal-information">About</a>
<a href="portfolio#skills">Skills</a> <a href="portfolio#skills">Skills</a>
<a href="portfolio#work-history">Work History</a> <a href="portfolio#work-history">Work History</a>
<a href="portfolio#projects">Projects</a> <a href="portfolio#projects">Projects</a>
<a href="portfolio#education">Education</a> <a href="portfolio#education">Education</a>
</div> </div>
</nav> </nav>