1
0
mirror of https://github.com/kremalicious/blog.git synced 2025-01-05 03:15:07 +01:00

package updates, fix build

This commit is contained in:
Matthias Kretschmann 2018-11-08 17:43:40 +01:00
parent 02a5a322e7
commit 483c68a37a
Signed by: m
GPG Key ID: 606EEEF3C479A91F
3 changed files with 24 additions and 32 deletions

View File

@ -33,29 +33,29 @@
"dms2dec": "^1.1.0", "dms2dec": "^1.1.0",
"fast-exif": "^1.0.1", "fast-exif": "^1.0.1",
"fraction.js": "^4.0.10", "fraction.js": "^4.0.10",
"gatsby": "^2.0.40", "gatsby": "^2.0.42",
"gatsby-image": "^2.0.19", "gatsby-image": "^2.0.20",
"gatsby-plugin-catch-links": "^2.0.6", "gatsby-plugin-catch-links": "^2.0.7",
"gatsby-plugin-favicon": "^3.1.4", "gatsby-plugin-favicon": "^3.1.4",
"gatsby-plugin-feed": "^2.0.9", "gatsby-plugin-feed": "^2.0.9",
"gatsby-plugin-lunr": "^1.2.0", "gatsby-plugin-lunr": "^1.2.0",
"gatsby-plugin-matomo": "^0.5.0", "gatsby-plugin-matomo": "^0.5.0",
"gatsby-plugin-meta-redirect": "^1.1.1", "gatsby-plugin-meta-redirect": "^1.1.1",
"gatsby-plugin-offline": "^2.0.12", "gatsby-plugin-offline": "^2.0.13",
"gatsby-plugin-react-helmet": "^3.0.1", "gatsby-plugin-react-helmet": "^3.0.1",
"gatsby-plugin-sass": "^2.0.3", "gatsby-plugin-sass": "^2.0.4",
"gatsby-plugin-sharp": "^2.0.12", "gatsby-plugin-sharp": "^2.0.12",
"gatsby-plugin-sitemap": "^2.0.2", "gatsby-plugin-sitemap": "^2.0.2",
"gatsby-plugin-svgr": "^2.0.0-alpha", "gatsby-plugin-svgr": "^2.0.0-alpha",
"gatsby-plugin-webpack-size": "^0.0.3", "gatsby-plugin-webpack-size": "^0.0.3",
"gatsby-redirect-from": "^0.1.1", "gatsby-redirect-from": "^0.1.1",
"gatsby-remark-autolink-headers": "^2.0.10", "gatsby-remark-autolink-headers": "^2.0.11",
"gatsby-remark-copy-linked-files": "^2.0.6", "gatsby-remark-copy-linked-files": "^2.0.6",
"gatsby-remark-highlights": "^1.3.4", "gatsby-remark-highlights": "^1.3.4",
"gatsby-remark-images": "^2.0.6", "gatsby-remark-images": "^2.0.6",
"gatsby-remark-smartypants": "^2.0.6", "gatsby-remark-smartypants": "^2.0.6",
"gatsby-source-filesystem": "^2.0.7", "gatsby-source-filesystem": "^2.0.8",
"gatsby-transformer-remark": "^2.1.11", "gatsby-transformer-remark": "^2.1.12",
"gatsby-transformer-sharp": "^2.1.8", "gatsby-transformer-sharp": "^2.1.8",
"graphql": "^0.13.2", "graphql": "^0.13.2",
"intersection-observer": "^0.5.1", "intersection-observer": "^0.5.1",
@ -64,10 +64,10 @@
"nord": "^0.2.1", "nord": "^0.2.1",
"pigeon-maps": "^0.11.6", "pigeon-maps": "^0.11.6",
"pigeon-marker": "^0.3.4", "pigeon-marker": "^0.3.4",
"react": "^16.6.0", "react": "^16.6.1",
"react-blockies": "^1.4.0", "react-blockies": "^1.4.0",
"react-clipboard.js": "^2.0.1", "react-clipboard.js": "^2.0.1",
"react-dom": "^16.6.0", "react-dom": "^16.6.1",
"react-helmet": "^5.2.0", "react-helmet": "^5.2.0",
"react-modal": "^3.6.1", "react-modal": "^3.6.1",
"react-pose": "^4.0.1", "react-pose": "^4.0.1",
@ -88,18 +88,18 @@
"eslint-plugin-jsx-a11y": "^6.1.2", "eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0", "eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1", "eslint-plugin-react": "^7.11.1",
"fs-extra": "^7.0.0", "fs-extra": "^7.0.1",
"markdownlint": "^0.11.0", "markdownlint": "^0.11.0",
"markdownlint-cli": "^0.13.0", "markdownlint-cli": "^0.13.0",
"npm-run-all": "^4.1.3", "npm-run-all": "^4.1.3",
"ora": "^3.0.0", "ora": "^3.0.0",
"prettier": "^1.14.3", "prettier": "^1.15.1",
"prettier-eslint-cli": "^4.7.1", "prettier-eslint-cli": "^4.7.1",
"prettier-stylelint": "^0.4.2", "prettier-stylelint": "^0.4.2",
"stylelint": "^9.7.1", "stylelint": "^9.7.1",
"stylelint-config-css-modules": "^1.3.0", "stylelint-config-css-modules": "^1.3.0",
"stylelint-config-standard": "^18.2.0", "stylelint-config-standard": "^18.2.0",
"stylelint-scss": "^3.3.2" "stylelint-scss": "^3.4.0"
}, },
"engines": { "engines": {
"node": ">=10.0.0" "node": ">=10.0.0"

View File

@ -32,12 +32,11 @@ const PostMeta = ({ post, meta }) => {
)} )}
</div> </div>
{type && {type && type === 'photo' && (
type === 'photo' && ( <div className={styles.type}>
<div className={styles.type}> <Link to={`/${slugify(type)}s/`}>{type}s</Link>
<Link to={`/${slugify(type)}s/`}>{type}s</Link> </div>
</div> )}
)}
{tags && ( {tags && (
<div className={styles.tags}> <div className={styles.tags}>

View File

@ -721,8 +721,7 @@ copyright Copyright (C) 2017 +
color: #8fbcbb; color: #8fbcbb;
} }
.source.json .source.json .meta.structure.dictionary.json > .string.quoted.json > .punctuation.string {
.meta.structure.dictionary.json > .string.quoted.json > .punctuation.string {
color: #d8dee9; color: #d8dee9;
} }
@ -731,16 +730,13 @@ copyright Copyright (C) 2017 +
color: #81a1c1; color: #81a1c1;
} }
.source.json .source.json .meta.structure.dictionary.json > .value.json > .string.quoted.json,
.meta.structure.dictionary.json > .value.json > .string.quoted.json,
.source.json .meta.structure.array.json > .value.json > .string.quoted.json { .source.json .meta.structure.array.json > .value.json > .string.quoted.json {
color: #a3be8c; color: #a3be8c;
} }
.source.json .source.json .meta.structure.dictionary.json > .value.json > .string.quoted.json > .punctuation,
.meta.structure.dictionary.json > .value.json > .string.quoted.json > .punctuation, .source.json .meta.structure.array.json > .value.json > .string.quoted.json > .punctuation {
.source.json
.meta.structure.array.json > .value.json > .string.quoted.json > .punctuation {
color: #d8dee9; color: #d8dee9;
} }
@ -970,13 +966,10 @@ copyright Copyright (C) 2017 +
color: #4c566a; color: #4c566a;
} }
.theme-nord-atom-syntax-accessibility-custom-comment-contrast .theme-nord-atom-syntax-accessibility-custom-comment-contrast .comment .markup.link {
.comment
.markup.link {
color: #4c566a; color: #4c566a;
} }
.theme-nord-atom-syntax-accessibility-custom-comment-contrast .theme-nord-atom-syntax-accessibility-custom-comment-contrast .punctuation.comment {
.punctuation.comment {
color: #4c566a; color: #4c566a;
} }