create-application-template 0.6.2 → 0.6.4

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
@@ -25,7 +25,7 @@ npx create-application-template --name={my-project}
25
25
  ## usage
26
26
  webpack is used for code bundling and the development server
27
27
 
28
- run development server and test suite on http://localhost:3333 by default
28
+ run development server and test suite (on http://localhost:3333 by default)
29
29
  ```
30
30
  npm run dev
31
31
  ```
@@ -72,9 +72,9 @@ console.log(process.env.PORT)
72
72
  automatically set to `production` for build; `develop` for dev server
73
73
 
74
74
  ### `.env` variables
75
- add new environmental variables via the `.env` file in project
75
+ add new or alter existing environmental variables via the `.env` file
76
76
 
77
- the following variables exist in the current configuration and can be altered
77
+ the following variables exist in the default configuration and can be altered
78
78
 
79
79
  #### develop (dev server)
80
80
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-application-template",
3
- "version": "0.6.2",
3
+ "version": "0.6.4",
4
4
  "description": "provides a configured application template for you to build upon",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -26,7 +26,7 @@
26
26
  "webpack",
27
27
  "jest",
28
28
  "eslint",
29
- "styelint",
29
+ "stylelint",
30
30
  "javascript"
31
31
  ],
32
32
  "repository": {
package/src/index.html CHANGED
@@ -7,7 +7,7 @@
7
7
  <meta
8
8
  name='Create Application Template'
9
9
  content='provides a configured application template for you to build upon'
10
- keywords='template, react, typescript, webpack, jest, eslint, styelint, javascript'
10
+ keywords='template, react, typescript, webpack, jest, eslint, stylelint, javascript'
11
11
  />
12
12
  <title><%= htmlWebpackPlugin.options.title %></title>
13
13
  </head>