alp-node 5.1.0 → 5.1.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/CHANGELOG.md +19 -0
- package/package.json +10 -11
- package/src/.eslintrc.json +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [5.1.2](https://github.com/christophehurpeau/alp/compare/alp-node@5.1.1...alp-node@5.1.2) (2023-01-31)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package alp-node
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [5.1.1](https://github.com/christophehurpeau/alp/compare/alp-node@5.1.0...alp-node@5.1.1) (2023-01-31)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* remove unecessary react peer dep in alp-node ([41640c2](https://github.com/christophehurpeau/alp/commit/41640c280651dda42161ba20c100466cd0187622))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [5.1.0](https://github.com/christophehurpeau/alp/compare/alp-node@5.0.0...alp-node@5.1.0) (2023-01-29)
|
|
7
26
|
|
|
8
27
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "alp-node",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.2",
|
|
4
4
|
"description": "framework based on koa 2",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"springbokjs",
|
|
@@ -83,19 +83,18 @@
|
|
|
83
83
|
]
|
|
84
84
|
},
|
|
85
85
|
"peerDependencies": {
|
|
86
|
-
"react": "^18.1.0",
|
|
87
86
|
"router-segments": "^6.0.0"
|
|
88
87
|
},
|
|
89
88
|
"dependencies": {
|
|
90
89
|
"@types/koa": "^2.13.1",
|
|
91
90
|
"@types/node": ">=16.0.0",
|
|
92
91
|
"@types/node-fetch": "^3.0.3",
|
|
93
|
-
"alp-listen": "6.1.
|
|
94
|
-
"alp-node-config": "8.1
|
|
95
|
-
"alp-node-errors": "7.1.
|
|
96
|
-
"alp-node-language": "6.1.
|
|
97
|
-
"alp-params": "5.1.
|
|
98
|
-
"alp-translate": "7.1
|
|
92
|
+
"alp-listen": "6.1.2",
|
|
93
|
+
"alp-node-config": "8.2.1",
|
|
94
|
+
"alp-node-errors": "7.1.2",
|
|
95
|
+
"alp-node-language": "6.1.2",
|
|
96
|
+
"alp-params": "5.1.2",
|
|
97
|
+
"alp-translate": "7.2.1",
|
|
99
98
|
"alp-types": "3.1.0",
|
|
100
99
|
"koa": "^2.13.1",
|
|
101
100
|
"koa-compress": "^5.0.0",
|
|
@@ -108,8 +107,8 @@
|
|
|
108
107
|
"@types/koa-compress": "4.0.3",
|
|
109
108
|
"@types/koa-static": "4.0.2",
|
|
110
109
|
"@types/minimist": "1.2.2",
|
|
111
|
-
"pob-babel": "35.
|
|
112
|
-
"typescript": "4.9.
|
|
110
|
+
"pob-babel": "35.5.0",
|
|
111
|
+
"typescript": "4.9.5"
|
|
113
112
|
},
|
|
114
|
-
"gitHead": "
|
|
113
|
+
"gitHead": "212c54c0c9aaba4e2ecf54880b06656f188289c0"
|
|
115
114
|
}
|
package/src/.eslintrc.json
CHANGED
|
@@ -7,13 +7,12 @@
|
|
|
7
7
|
"plugins": ["@typescript-eslint"],
|
|
8
8
|
"extends": [
|
|
9
9
|
"@pob/eslint-config-typescript",
|
|
10
|
-
"@pob/eslint-config-typescript/node"
|
|
11
|
-
"@pob/eslint-config-typescript-react"
|
|
10
|
+
"@pob/eslint-config-typescript/node"
|
|
12
11
|
],
|
|
13
12
|
"ignorePatterns": ["*.d.ts"],
|
|
14
13
|
"overrides": [
|
|
15
14
|
{
|
|
16
|
-
"files": ["**/*.test.
|
|
15
|
+
"files": ["**/*.test.ts", "__tests__/**/*.ts"],
|
|
17
16
|
"extends": ["@pob/eslint-config-typescript/test"],
|
|
18
17
|
"env": {
|
|
19
18
|
"jest": true
|