create-application-template 1.1.1 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-application-template",
3
- "version": "1.1.1",
3
+ "version": "1.2.0",
4
4
  "description": "provides a configured application template for you to build upon",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -5,7 +5,7 @@ import theme from '../styles/theme'
5
5
  import * as app from '../styles/App.styled'
6
6
  import { StyledLogo } from '../styles/Logo.styled'
7
7
  import '../styles/env.css'
8
- import cat from '../assets/cat.svg'
8
+ import logo from '../assets/logo.svg'
9
9
  import { Counter } from './Counter'
10
10
 
11
11
  export const App: FC = () => {
@@ -35,7 +35,7 @@ export const App: FC = () => {
35
35
  <code className='card--env'>[EXAMPLE={process.env.EXAMPLE}]</code>
36
36
  </app.StyledSection>
37
37
  <app.StyledSection>
38
- <StyledLogo src={cat} alt='logo'/>
38
+ <StyledLogo src={logo} alt='logo'/>
39
39
  </app.StyledSection>
40
40
  <app.StyledSection>
41
41
  <Counter />
File without changes