Skip to content

Commit

Permalink
[examples] Fix typo in gatsby readme (#19998)
Browse files Browse the repository at this point in the history
  • Loading branch information
eps1lon committed Mar 6, 2020
1 parent 1eb2203 commit b9fc5c3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 8 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,14 @@ jobs:
- install_js
- run:
name: Tests TypeScript definitions
# we want to see errors in all packages.
# without --no-bail we only see at most a single failing package
command: yarn typescript --no-bail
command: |
# ignore build failures
# it's expected that typescript@next fails since the lines of the errors
# change frequently. This build is monitored regardless of its status
set +e
# we want to see errors in all packages.
# without --no-bail we only see at most a single failing package
yarn typescript --no-bail
test_browser:
<<: *defaults
steps:
Expand Down
2 changes: 1 addition & 1 deletion examples/gatsby-theme/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ or:

## The idea behind the example

The is an alternative example to [`/examples/gatsby`](https://github.com/mui-org/material-ui/tree/master/examples/gatsby) leveraging [gatsby-theme-material-ui](https://github.com/hupe1980/gatsby-theme-material-ui/tree/master/packages/gatsby-theme-material-ui).
This is an alternative example to [`/examples/gatsby`](https://github.com/mui-org/material-ui/tree/master/examples/gatsby) leveraging [gatsby-theme-material-ui](https://github.com/hupe1980/gatsby-theme-material-ui/tree/master/packages/gatsby-theme-material-ui).
The example bundles different Gatsby plugins into a single Gatsby theme.
It trades less freedom for fewer boilerplate.

0 comments on commit b9fc5c3

Please sign in to comment.