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

Commit 3c58139

Browse files
authored
small fix to bolt version, gitignore, and favicon (#215)
* small fix to bolt version, gitignore, and favicon * fix circle CI * update bolt dependency
1 parent 095bff8 commit 3c58139

File tree

8 files changed

+16
-8
lines changed

8 files changed

+16
-8
lines changed

.changeset/silver-ants-know.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@brisk-docs/gatsby-generator': patch
3+
---
4+
5+
Fix default for icon

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ save-cache: &save-cache
1919

2020
install-bolt: &install-bolt
2121
name: Install Bolt
22-
command: sudo yarn global add bolt@^0.23.2 && bolt
22+
command: sudo yarn global add bolt@^0.24.3 && bolt
2323

2424
jobs:
2525
install:

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ node_modules
44
.DS_Store
55
.idea
66
.vscode
7+
.env
78

89
.cache
910
*.tgz

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"quick-pack": "yarn build && cd packages/website && yarn pack"
3030
},
3131
"bolt": {
32-
"version": "^0.23.2",
32+
"version": "^0.24.3",
3333
"workspaces": [
3434
"packages/*"
3535
]
@@ -102,7 +102,7 @@
102102
"babel-plugin-styled-components": "1.10.0",
103103
"babel-plugin-transform-dynamic-import": "^2.1.0",
104104
"babel-plugin-transform-flow-strip-types": "^6.22.0",
105-
"bolt": "^0.23.2",
105+
"bolt": "^0.24.3",
106106
"command-line-args": "^5.0.2",
107107
"cypress": "^3.1.5",
108108
"emotion": "^9.1.3",

packages/website/gatsby-config.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ module.exports = {
4848
// see https://developers.google.com/web/fundamentals/web-app-manifest/#display
4949
display: 'browser',
5050
// TODO: get favicons working again
51-
icon: config.favicon,
51+
icon: config.favicon
52+
? config.favicon
53+
: path.resolve(__dirname, 'static/skier.png'),
5254
},
5355
},
5456
],
-340 KB
Binary file not shown.

packages/website/static/skier.png

23.6 KB
Loading

yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -4705,10 +4705,10 @@ [email protected]:
47054705
raw-body "2.4.0"
47064706
type-is "~1.6.17"
47074707

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

0 commit comments

Comments
 (0)