fenge 0.3.3 → 0.4.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 +16 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# fenge
|
|
2
2
|
|
|
3
|
+
## 0.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- cb2a822: feat(fenge): improve compatible with TS 5.7
|
|
8
|
+
|
|
9
|
+
TypeScript 5.7 add a feature that we can import from relative ts file. That means, from now on, we can write completely ts. TypeScript now is a 100% programming language, rather than a enhancement of JavaScript.
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [cb2a822]
|
|
14
|
+
- Updated dependencies [cb2a822]
|
|
15
|
+
- Updated dependencies [cb2a822]
|
|
16
|
+
- @fenge/eslint-config@0.5.4
|
|
17
|
+
- @fenge/tsconfig@0.3.0
|
|
18
|
+
|
|
3
19
|
## 0.3.3
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fenge",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "A CLI tool for code quality",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -51,11 +51,11 @@
|
|
|
51
51
|
"ora": "8.1.1",
|
|
52
52
|
"prettier": "3.4.2",
|
|
53
53
|
"yoctocolors": "2.1.1",
|
|
54
|
-
"@fenge/eslint-config": "0.5.
|
|
54
|
+
"@fenge/eslint-config": "0.5.4",
|
|
55
55
|
"@fenge/prettier-config": "0.1.3",
|
|
56
|
-
"@fenge/tsconfig": "0.
|
|
57
|
-
"
|
|
58
|
-
"
|
|
56
|
+
"@fenge/tsconfig": "0.3.0",
|
|
57
|
+
"prettier-ignore": "0.2.0",
|
|
58
|
+
"@fenge/types": "0.2.0"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@types/node": "22.10.5"
|