create-application-template 0.3.3 → 0.4.1

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
  ```
@@ -19,7 +21,7 @@ npx create-application-template --name={my-project}
19
21
  ## usage
20
22
  webpack is used for code bundling and the development server
21
23
 
22
- run development server and test suite
24
+ run development server and test suite on http://localhost:3333 by default
23
25
  ```
24
26
  npm run dev
25
27
  ```
@@ -46,12 +48,12 @@ npm run test
46
48
  ```
47
49
 
48
50
  ## code linting
49
- linting rules are in `.eslintrc.js`, install the ESLint pluggin if using vscode
51
+ linting rules are in `.eslintrc.js`; install the ESLint pluggin if using vscode
50
52
  ```
51
53
  npm run lint
52
54
  ```
53
55
 
54
- css linting rules are in `.stylelintrc.js`, install the Stylelint pluggin if using vscode
56
+ css linting rules are in `.stylelintrc.js`; install the Stylelint pluggin if using vscode
55
57
  ```
56
58
  npm run stylelint
57
59
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-application-template",
3
- "version": "0.3.3",
3
+ "version": "0.4.1",
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
+ }