create-application-template 0.3.3 → 0.4.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/README.md +2 -0
- package/package.json +1 -1
- package/src/components/App.tsx +1 -0
- package/src/styles/app.css +5 -0
package/README.md
CHANGED
|
@@ -5,6 +5,8 @@ All configuration is fully visable and under your control to augment as you see
|
|
|
5
5
|
|
|
6
6
|
The template is a typescript enabled React application with a test suite and code linting.
|
|
7
7
|
|
|
8
|
+
See the template running live here: https://createapplicationtemplate.onrender.com/.
|
|
9
|
+
|
|
8
10
|
## installation
|
|
9
11
|
first install globally
|
|
10
12
|
```
|
package/package.json
CHANGED
package/src/components/App.tsx
CHANGED
|
@@ -8,6 +8,7 @@ export const App = () => {
|
|
|
8
8
|
<header className='header--wrapper'>
|
|
9
9
|
<h1>Create Application Template</h1>
|
|
10
10
|
<h2>Configured and under your control!</h2>
|
|
11
|
+
<h2>Access the template <a href='https://www.npmjs.com/package/create-application-template' rel='noreferrer' target='_blank'>here</a>...</h2>
|
|
11
12
|
</header>
|
|
12
13
|
<section className='section--wrapper'>
|
|
13
14
|
<code className='card--env'>[NODE_ENV={process.env.NODE_ENV}]</code>
|