Skip to content

Commit

Permalink
removed semicolon and pushed text changes that were not pushed previo…
Browse files Browse the repository at this point in the history
…usly
  • Loading branch information
heldrida committed Feb 16, 2020
1 parent d017d66 commit 4564661
Show file tree
Hide file tree
Showing 5 changed files with 280 additions and 7 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ To Build:

### `yarn build`

To serve the Production/Built version:

## `npx serve -s build`

For development:

## yarn watch
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@
"apollo-link-http": "^1.5.16",
"enzyme": "^3.11.0",
"graphql": "^14.6.0",
"serve": "^11.3.0",
"styled-components": "^5.0.1"
}
}
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { BrowserRouter as Router, Route, Switch } from 'react-router-dom'
import { Results } from './Containers'
import { ThemeProvider } from "styled-components";
import { ThemeProvider } from 'styled-components'
import { themeConf, DefaultStyles } from './styled'
import { NavigationBar, BoxWrapper, Game } from './Components'
import { GameProvider } from './Context'
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Info/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const Info = () => (
<InfoContainer>
<p>This projects depends on the <a href="http://graphql.org/swapi-graphql" target="_blank">GraphQl wrapper</a> for the Star Wars API; To avoid CORS or 405 (as confirmed after a reverse proxy at the time of writting, might be different today), run the following <a href="https://docs.docker.com/install/" target="_blank">Docker</a> and <a href="https://github.com/heldrida/react-star-wars-swapi-graphql" target="_blank">service</a> locally.</p>
<p>If you're checking a live preview link, have in mind that the Graphql API might be down at any time, so please find the project source code in my <a href="https://github.com/heldrida" target="_blank">Github</a> account and run the project by following the instructions provided in the <a href="https://github.com/heldrida/react-star-wars-swapi-graphql/blob/master/README.md" target="_blank">README</a> file. I wrote this project after a request by a company, but put a bit more work to have the following stack available openly: React v16.8, GraphQl w/ Apollo, Hooks effects, react-testing-library and local state, styled-components; Javascript + TypeScript, popmotion, etc. Also, Docker!</p>
<p>Should update the project whenever possible (WIP), so you might find a few performance issues in the animations or transitions, solely Desktop tested and developed in Firefox Quantum and Chrome Thanks for reading!</p>
<p>Should update the project whenever possible (WIP), so you might find a few performance issues in the animations or transitions, solely Desktop tested and developed in Firefox Quantum and Chrome. Thanks for reading!</p>
<Link to='/game'>
<CtaButton>To proceed...</CtaButton>
</Link>
Expand Down
Loading

0 comments on commit 4564661

Please sign in to comment.