create-application-template 0.6.2 → 0.6.3
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 +1 -1
- package/package.json +2 -2
- package/src/index.html +1 -1
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
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-application-template",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3",
|
|
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
|
-
"
|
|
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,
|
|
10
|
+
keywords='template, react, typescript, webpack, jest, eslint, stylelint, javascript'
|
|
11
11
|
/>
|
|
12
12
|
<title><%= htmlWebpackPlugin.options.title %></title>
|
|
13
13
|
</head>
|