create-application-template 0.6.6 → 0.7.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 +4 -4
- package/package.json +2 -1
- package/tsconfig.json +1 -0
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|

|
|
2
2
|

|
|
3
|
-

|
|
4
4
|
|
|
5
5
|
# Create Application Template
|
|
6
6
|
This project aims to provide a configured application template for you to build upon.
|
|
@@ -36,12 +36,12 @@ npm run build
|
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
## tsconfig
|
|
39
|
-
focused on type checking;
|
|
39
|
+
focused on type checking; babel is used for transpiling
|
|
40
40
|
|
|
41
41
|
## pre-commit
|
|
42
|
-
scripts in `.husky/pre-commit` are run
|
|
42
|
+
scripts in `.husky/pre-commit` are run on commits for quality control
|
|
43
43
|
|
|
44
|
-
add or remove scripts
|
|
44
|
+
add or remove scripts you'd like run before code is commited
|
|
45
45
|
|
|
46
46
|
## test suite
|
|
47
47
|
to create a test follow this file naming format: `*.{spec,test}.{ts,tsx}`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-application-template",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "provides a configured application template for you to build upon",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -62,6 +62,7 @@
|
|
|
62
62
|
"@types/node": "20.11.19",
|
|
63
63
|
"@types/react": "18.2.48",
|
|
64
64
|
"@types/react-dom": "18.2.18",
|
|
65
|
+
"@types/webpack-env": "1.18.4",
|
|
65
66
|
"@typescript-eslint/eslint-plugin": "6.5.0",
|
|
66
67
|
"@typescript-eslint/parser": "6.5.0",
|
|
67
68
|
"babel-jest": "29.7.0",
|