create-application-template 0.4.0 → 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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -5,7 +5,7 @@ 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/.
8
+ See the template running live [here](https://createapplicationtemplate.onrender.com).
9
9
 
10
10
  ## installation
11
11
  first install globally
@@ -21,7 +21,7 @@ npx create-application-template --name={my-project}
21
21
  ## usage
22
22
  webpack is used for code bundling and the development server
23
23
 
24
- run development server and test suite
24
+ run development server and test suite on http://localhost:3333 by default
25
25
  ```
26
26
  npm run dev
27
27
  ```
@@ -48,12 +48,12 @@ npm run test
48
48
  ```
49
49
 
50
50
  ## code linting
51
- 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
52
52
  ```
53
53
  npm run lint
54
54
  ```
55
55
 
56
- 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
57
57
  ```
58
58
  npm run stylelint
59
59
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-application-template",
3
- "version": "0.4.0",
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": {