create-application-template 0.3.2 → 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 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
  ```
@@ -63,9 +65,7 @@ console.log(process.env.PORT)
63
65
  ```
64
66
 
65
67
  ### `NODE_ENV` settings
66
- set to `production` for build
67
-
68
- set to `develop` for dev server
68
+ automatically set to `production` for build; `develop` for dev server
69
69
 
70
70
  ### `.env` variables
71
71
  add new environmental variables via the `.env` file in project
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-application-template",
3
- "version": "0.3.2",
3
+ "version": "0.4.0",
4
4
  "description": "provides a configured application template for you to build upon",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -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>
@@ -51,3 +51,8 @@
51
51
  margin: 0.4vh;
52
52
  filter: brightness(0.8);
53
53
  }
54
+
55
+ a {
56
+ color: #cec2eb;
57
+ opacity: 0.6;
58
+ }