Skip to content
This repository has been archived by the owner on Mar 10, 2023. It is now read-only.

Commit

Permalink
small fix to bolt version, gitignore, and favicon (#215)
Browse files Browse the repository at this point in the history
* small fix to bolt version, gitignore, and favicon

* fix circle CI

* update bolt dependency
  • Loading branch information
Noviny authored Nov 11, 2019
1 parent 095bff8 commit 3c58139
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 8 deletions.
5 changes: 5 additions & 0 deletions .changeset/silver-ants-know.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@brisk-docs/gatsby-generator': patch
---

Fix default for icon
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ save-cache: &save-cache

install-bolt: &install-bolt
name: Install Bolt
command: sudo yarn global add bolt@^0.23.2 && bolt
command: sudo yarn global add bolt@^0.24.3 && bolt

jobs:
install:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ node_modules
.DS_Store
.idea
.vscode
.env

.cache
*.tgz
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"quick-pack": "yarn build && cd packages/website && yarn pack"
},
"bolt": {
"version": "^0.23.2",
"version": "^0.24.3",
"workspaces": [
"packages/*"
]
Expand Down Expand Up @@ -102,7 +102,7 @@
"babel-plugin-styled-components": "1.10.0",
"babel-plugin-transform-dynamic-import": "^2.1.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"bolt": "^0.23.2",
"bolt": "^0.24.3",
"command-line-args": "^5.0.2",
"cypress": "^3.1.5",
"emotion": "^9.1.3",
Expand Down
4 changes: 3 additions & 1 deletion packages/website/gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ module.exports = {
// see https://developers.google.com/web/fundamentals/web-app-manifest/#display
display: 'browser',
// TODO: get favicons working again
icon: config.favicon,
icon: config.favicon
? config.favicon
: path.resolve(__dirname, 'static/skier.png'),
},
},
],
Expand Down
Binary file removed packages/website/static/favicon.ico.default
Binary file not shown.
Binary file added packages/website/static/skier.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4705,10 +4705,10 @@ [email protected]:
raw-body "2.4.0"
type-is "~1.6.17"

bolt@^0.23.2:
version "0.23.2"
resolved "https://registry.yarnpkg.com/bolt/-/bolt-0.23.2.tgz#36a6f824c2dd1be744aa06505910550c8eefe573"
integrity sha512-PMzJP1K5dkO5YWaePgJCGxIIPVwYUEOGkJ+33lbXeeOmOnAir0YTnd2F5/ZLxLhd2Mzh9CWtxxhOx9Pev1MiGQ==
bolt@^0.24.3:
version "0.24.3"
resolved "https://registry.yarnpkg.com/bolt/-/bolt-0.24.3.tgz#425da5330aedf145b330ad1f3a779c01cd846db5"
integrity sha512-lvSfUBsH1Hko6tUiqmrzZGqheQKD8imCvDNuND7EjO+mhGpu1Ejbz65ur20GqpFG+BtubrgDTDFK5rewpLM1pw==
dependencies:
array-includes "^3.0.3"
babel-runtime "^6.25.0"
Expand Down

0 comments on commit 3c58139

Please sign in to comment.