create-application-template 0.6.0 → 0.6.2
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 +5 -1
- package/package.json +4 -3
- package/src/index.html +2 -1
- package/src/public/robots.txt +1 -1
package/README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+

|
|
2
|
+

|
|
3
|
+

|
|
4
|
+
|
|
1
5
|
# Create Application Template
|
|
2
6
|
This project aims to provide a configured application template for you to build upon.
|
|
3
7
|
|
|
@@ -5,7 +9,7 @@ All configuration is fully visable and under your control to augment as you see
|
|
|
5
9
|
|
|
6
10
|
The template is a typescript enabled React application with a test suite and code linting.
|
|
7
11
|
|
|
8
|
-
See the template running live [here](https://createapplicationtemplate.
|
|
12
|
+
See the template running live [here](https://www.createapplicationtemplate.com/).
|
|
9
13
|
|
|
10
14
|
## installation
|
|
11
15
|
first install globally
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-application-template",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
4
4
|
"description": "provides a configured application template for you to build upon",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -26,7 +26,8 @@
|
|
|
26
26
|
"webpack",
|
|
27
27
|
"jest",
|
|
28
28
|
"eslint",
|
|
29
|
-
"styelint"
|
|
29
|
+
"styelint",
|
|
30
|
+
"javascript"
|
|
30
31
|
],
|
|
31
32
|
"repository": {
|
|
32
33
|
"type": "git",
|
|
@@ -36,7 +37,7 @@
|
|
|
36
37
|
"license": "MIT",
|
|
37
38
|
"proxy": "http://localhost:3000",
|
|
38
39
|
"engines": {
|
|
39
|
-
"node": "18"
|
|
40
|
+
"node": ">=18.19.1"
|
|
40
41
|
},
|
|
41
42
|
"dependencies": {
|
|
42
43
|
"concurrently": "8.2.2",
|
package/src/index.html
CHANGED
|
@@ -6,7 +6,8 @@
|
|
|
6
6
|
<meta name='theme-color' content='#000000' />
|
|
7
7
|
<meta
|
|
8
8
|
name='Create Application Template'
|
|
9
|
-
content='
|
|
9
|
+
content='provides a configured application template for you to build upon'
|
|
10
|
+
keywords='template, react, typescript, webpack, jest, eslint, styelint, javascript'
|
|
10
11
|
/>
|
|
11
12
|
<title><%= htmlWebpackPlugin.options.title %></title>
|
|
12
13
|
</head>
|
package/src/public/robots.txt
CHANGED