alp-node 6.1.0 → 6.2.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 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
+ ## [6.2.0](https://github.com/christophehurpeau/alp/compare/alp-node@6.1.1...alp-node@6.2.0) (2024-01-06)
7
+
8
+ Note: no notable changes
9
+
10
+
11
+
12
+
13
+ ## [6.1.1](https://github.com/christophehurpeau/alp/compare/alp-node@6.1.0...alp-node@6.1.1) (2024-01-06)
14
+
15
+ Note: no notable changes
16
+
17
+ Version bump for dependency: alp-listen
18
+ Version bump for dependency: alp-node-config
19
+ Version bump for dependency: alp-node-errors
20
+ Version bump for dependency: alp-node-language
21
+ Version bump for dependency: alp-params
22
+ Version bump for dependency: alp-translate
23
+
24
+
6
25
  ## [6.1.0](https://github.com/christophehurpeau/alp/compare/alp-node@6.0.0...alp-node@6.1.0) (2023-12-25)
7
26
 
8
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "alp-node",
3
- "version": "6.1.0",
3
+ "version": "6.2.0",
4
4
  "description": "framework based on koa 2",
5
5
  "keywords": [
6
6
  "springbokjs",
@@ -24,6 +24,7 @@
24
24
  "engines": {
25
25
  "node": ">=18.12.0"
26
26
  },
27
+ "sideEffects": false,
27
28
  "main": "./dist/index-node18.mjs",
28
29
  "types": "./dist/definitions/index.d.ts",
29
30
  "typesVersions": {
@@ -48,7 +49,6 @@
48
49
  }
49
50
  }
50
51
  },
51
- "sideEffects": false,
52
52
  "files": [
53
53
  "src",
54
54
  "dist"
@@ -62,7 +62,6 @@
62
62
  "lint:eslint": "yarn ../.. run eslint --report-unused-disable-directives --resolve-plugins-relative-to . --quiet packages/alp-node",
63
63
  "watch": "yarn clean:build && rollup --config rollup.config.mjs --watch"
64
64
  },
65
- "prettier": "@pob/root/prettier-config",
66
65
  "pob": {
67
66
  "babelEnvs": [
68
67
  {
@@ -75,18 +74,19 @@
75
74
  "AlpNodeApp"
76
75
  ]
77
76
  },
77
+ "prettier": "@pob/root/prettier-config",
78
78
  "peerDependencies": {
79
79
  "router-segments": "^9.1.0"
80
80
  },
81
81
  "dependencies": {
82
82
  "@types/koa": "^2.13.1",
83
83
  "@types/node": ">=18.0.0",
84
- "alp-listen": "7.1.0",
85
- "alp-node-config": "9.1.0",
86
- "alp-node-errors": "8.1.0",
87
- "alp-node-language": "7.1.0",
88
- "alp-params": "6.1.0",
89
- "alp-translate": "8.1.0",
84
+ "alp-listen": "7.1.1",
85
+ "alp-node-config": "9.1.1",
86
+ "alp-node-errors": "8.1.1",
87
+ "alp-node-language": "7.1.1",
88
+ "alp-params": "6.2.0",
89
+ "alp-translate": "8.1.1",
90
90
  "alp-types": "3.1.1",
91
91
  "koa": "^2.13.1",
92
92
  "koa-compress": "^5.0.0",
@@ -94,11 +94,11 @@
94
94
  "nightingale-logger": "^15.0.0"
95
95
  },
96
96
  "devDependencies": {
97
- "@babel/core": "7.23.6",
97
+ "@babel/core": "7.23.7",
98
98
  "@types/koa-compress": "4.0.6",
99
99
  "@types/koa-static": "4.0.4",
100
100
  "@types/minimist": "1.2.5",
101
- "pob-babel": "38.0.0",
101
+ "pob-babel": "38.0.2",
102
102
  "typescript": "5.3.3"
103
103
  }
104
104
  }
@@ -2,6 +2,7 @@
2
2
  "root": true,
3
3
  "parser": "@typescript-eslint/parser",
4
4
  "parserOptions": {
5
+ "EXPERIMENTAL_useProjectService": true,
5
6
  "project": "packages/alp-node/tsconfig.json"
6
7
  },
7
8
  "plugins": ["@typescript-eslint"],