create-banana 2.4.3 → 2.4.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-banana",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.4",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/TMname1/create-banana.git"
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"scripts": {
|
|
73
73
|
"commit": "cz",
|
|
74
74
|
"lint": "eslint . --fix --cache",
|
|
75
|
-
"format": "prettier --write
|
|
75
|
+
"format": "prettier --write .",
|
|
76
76
|
"lint-staged": "lint-staged",
|
|
77
77
|
"build": "tsc --noEmit && npx tsx ./script/build.ts",
|
|
78
78
|
"test": "pnpm build && dotenvx run -- vitest --bail 1",
|
package/readme.md
CHANGED
|
@@ -33,6 +33,15 @@ Options:
|
|
|
33
33
|
-h, --help display help for command
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
+
## Test
|
|
37
|
+
|
|
38
|
+
To execute test, run:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
pnpm test
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
The test will run E2E_test, which involves initializing the git repository and testing that the package.json directives work. Match Snapshots are run after each E2E_test passed.
|
|
36
45
|
|
|
37
46
|
# Currently implemented functions
|
|
38
47
|
|