Upgrade dependencies
This commit is contained in:
parent
9a93331c68
commit
2bfd966d50
1159
package-lock.json
generated
1159
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
22
package.json
22
package.json
@ -13,9 +13,9 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"compression": "^1.7.4",
|
||||
"date-fns": "^2.7.0",
|
||||
"date-fns": "^2.8.1",
|
||||
"front-matter": "^3.0.2",
|
||||
"marked": "^0.7.0",
|
||||
"marked": "^0.8.0",
|
||||
"polka": "^0.5.2",
|
||||
"ramda": "^0.26.1",
|
||||
"sirv": "^0.4.2"
|
||||
@ -23,18 +23,18 @@
|
||||
"devDependencies": {
|
||||
"npm-run-all": "^4.1.5",
|
||||
"sapper": "^0.27.9",
|
||||
"svelte": "^3.12.1",
|
||||
"@babel/core": "^7.6.4",
|
||||
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
|
||||
"@babel/plugin-transform-runtime": "^7.6.2",
|
||||
"@babel/preset-env": "^7.6.3",
|
||||
"@babel/runtime": "^7.6.3",
|
||||
"rollup": "^1.26.3",
|
||||
"svelte": "^3.16.7",
|
||||
"@babel/core": "^7.7.7",
|
||||
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
|
||||
"@babel/plugin-transform-runtime": "^7.7.6",
|
||||
"@babel/preset-env": "^7.7.7",
|
||||
"@babel/runtime": "^7.7.7",
|
||||
"rollup": "^1.27.14",
|
||||
"rollup-plugin-babel": "^4.3.3",
|
||||
"rollup-plugin-commonjs": "^10.1.0",
|
||||
"rollup-plugin-node-resolve": "^5.2.0",
|
||||
"rollup-plugin-replace": "^2.2.0",
|
||||
"rollup-plugin-svelte": "^5.1.0",
|
||||
"rollup-plugin-terser": "^5.1.2"
|
||||
"rollup-plugin-svelte": "^5.1.1",
|
||||
"rollup-plugin-terser": "^5.1.3"
|
||||
}
|
||||
}
|
||||
|
@ -1,9 +1,9 @@
|
||||
<script>
|
||||
export let segment;
|
||||
// export let segment;
|
||||
</script>
|
||||
|
||||
<style>
|
||||
/* nav {
|
||||
/* nav {
|
||||
border-bottom: 1px solid rgba(255,62,0,0.1);
|
||||
font-weight: 300;
|
||||
padding: 0 1em;
|
||||
@ -15,7 +15,7 @@
|
||||
}
|
||||
|
||||
/* clearfix */
|
||||
/* ul::after {
|
||||
/* ul::after {
|
||||
content: '';
|
||||
display: block;
|
||||
clear: both;
|
||||
@ -41,7 +41,7 @@
|
||||
bottom: -1px;
|
||||
} */
|
||||
|
||||
/* a {
|
||||
/* a {
|
||||
text-decoration: none;
|
||||
padding: 1em 0.5em;
|
||||
display: block;
|
||||
@ -58,24 +58,24 @@
|
||||
|
||||
nav a {
|
||||
padding: 0.4em 0.5em;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<nav>
|
||||
<!-- <ul> -->
|
||||
<!-- <li><a class='{segment === undefined ? "selected" : ""}' href='.'>home</a></li> -->
|
||||
<!-- <li><a class='{segment === "portfolio" ? "selected" : ""}' href='portfolio'>portfolio</a></li> -->
|
||||
<!-- <ul> -->
|
||||
<!-- <li><a class='{segment === undefined ? "selected" : ""}' href='.'>home</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 -->
|
||||
<!-- <li><a rel=prefetch class='{segment === "blog" ? "selected" : ""}' href='blog'>blog</a></li> -->
|
||||
<!-- </ul> -->
|
||||
<!-- <li><a rel=prefetch class='{segment === "blog" ? "selected" : ""}' href='blog'>blog</a></li> -->
|
||||
<!-- </ul> -->
|
||||
|
||||
<div class="page-navigation">
|
||||
<a href="portfolio#personal-information">About</a>
|
||||
<a href="portfolio#skills">Skills</a>
|
||||
<a href="portfolio#work-history">Work History</a>
|
||||
<a href="portfolio#projects">Projects</a>
|
||||
<a href="portfolio#education">Education</a>
|
||||
<a href="portfolio#personal-information">About</a>
|
||||
<a href="portfolio#skills">Skills</a>
|
||||
<a href="portfolio#work-history">Work History</a>
|
||||
<a href="portfolio#projects">Projects</a>
|
||||
<a href="portfolio#education">Education</a>
|
||||
</div>
|
||||
</nav>
|
Loading…
Reference in New Issue
Block a user