@qavajs/create 0.4.1 → 1.0.0
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/CHANGELOG.MD +6 -0
- package/package.json +6 -6
- package/templates/feature.ejs +1 -1
package/CHANGELOG.MD
CHANGED
|
@@ -8,6 +8,12 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
|
|
|
8
8
|
:beetle: - bugfix
|
|
9
9
|
:x: - deprecation
|
|
10
10
|
|
|
11
|
+
## [1.0.0]
|
|
12
|
+
- :rocket: release
|
|
13
|
+
|
|
14
|
+
## [0.4.2]
|
|
15
|
+
- :beetle: fixed default UI scenario
|
|
16
|
+
|
|
11
17
|
## [0.4.1]
|
|
12
18
|
- :beetle: fixed issue with gitignore template
|
|
13
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qavajs/create",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "initializer of @qavajs project",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"author": "Alexandr Galichenko",
|
|
21
21
|
"license": "MIT",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@inquirer/prompts": "^
|
|
23
|
+
"@inquirer/prompts": "^7.0.1",
|
|
24
24
|
"ejs": "^3.1.10",
|
|
25
25
|
"fs-extra": "^11.2.0",
|
|
26
|
-
"typescript": "^5.6.
|
|
26
|
+
"typescript": "^5.6.3",
|
|
27
27
|
"yarn-install": "^1.0.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/ejs": "^3.1.5",
|
|
31
31
|
"@types/fs-extra": "^11.0.4",
|
|
32
|
-
"@types/node": "^
|
|
33
|
-
"@vitest/coverage-v8": "^2.
|
|
34
|
-
"vitest": "^2.
|
|
32
|
+
"@types/node": "^22.8.2",
|
|
33
|
+
"@vitest/coverage-v8": "^2.1.4",
|
|
34
|
+
"vitest": "^2.1.4"
|
|
35
35
|
}
|
|
36
36
|
}
|
package/templates/feature.ejs
CHANGED