@eggjs/tegg-config 1.1.0 → 1.2.1
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 +72 -0
- package/agent.d.ts +2 -0
- package/agent.js +8 -0
- package/package.json +6 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,78 @@
|
|
|
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
|
+
## [1.2.1](https://github.com/eggjs/tegg/compare/@eggjs/tegg-config@1.2.0...@eggjs/tegg-config@1.2.1) (2022-09-05)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* fix miss agent file ([0fa496b](https://github.com/eggjs/tegg/commit/0fa496bdbb4ffa4e911fffa3e176fa7bdf03fb12))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# 1.2.0 (2022-09-04)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* impl Schedule decorator ([#52](https://github.com/eggjs/tegg/issues/52)) ([7f95005](https://github.com/eggjs/tegg/commit/7f950050b548ca542addbd7b466675da4e81ce3f))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
## 1.1.1 (2022-06-21)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
# 1.1.0 (2022-06-15)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
# 1.0.0 (2022-02-08)
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
# 0.2.0 (2022-01-20)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
## 0.1.19 (2022-01-05)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
## 0.1.18 (2021-12-31)
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
## 0.1.13 (2021-11-14)
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
### Features
|
|
54
|
+
|
|
55
|
+
* impl standalone tegg ([af9f682](https://github.com/eggjs/tegg/commit/af9f6826ef882ef7206e80ee25433a2b19012995))
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
## 0.1.5 (2021-09-08)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
## 0.1.2 (2021-09-01)
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
# 0.1.0 (2021-07-22)
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
### Bug Fixes
|
|
71
|
+
|
|
72
|
+
* set publishConfig.access to public ([527f1fa](https://github.com/eggjs/tegg/commit/527f1fa8e3bcaf45ff5b3a63d90473d4a6a2e2b0))
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
|
|
6
78
|
# [0.2.0](https://github.com/eggjs/tegg/compare/v0.1.19...v0.2.0) (2022-01-20)
|
|
7
79
|
|
|
8
80
|
**Note:** Version bump only for package @eggjs/tegg-config
|
package/agent.d.ts
ADDED
package/agent.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const app_1 = __importDefault(require("./app"));
|
|
7
|
+
exports.default = app_1.default;
|
|
8
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWdlbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJhZ2VudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLGdEQUFzQztBQUV0QyxrQkFBZSxhQUFpQixDQUFDIn0=
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"eggPlugin": {
|
|
4
4
|
"name": "teggConfig"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.1
|
|
6
|
+
"version": "1.2.1",
|
|
7
7
|
"description": "module config plugin for egg",
|
|
8
8
|
"keywords": [
|
|
9
9
|
"egg",
|
|
@@ -16,7 +16,9 @@
|
|
|
16
16
|
"files": [
|
|
17
17
|
"app.js",
|
|
18
18
|
"app.d.ts",
|
|
19
|
-
"typings/index.d.ts"
|
|
19
|
+
"typings/index.d.ts",
|
|
20
|
+
"agent.js",
|
|
21
|
+
"agent.d.ts"
|
|
20
22
|
],
|
|
21
23
|
"types": "typings/index.d.ts",
|
|
22
24
|
"scripts": {
|
|
@@ -39,7 +41,7 @@
|
|
|
39
41
|
"node": ">=14.0.0"
|
|
40
42
|
},
|
|
41
43
|
"dependencies": {
|
|
42
|
-
"@eggjs/tegg-common-util": "^1.1.
|
|
44
|
+
"@eggjs/tegg-common-util": "^1.1.1"
|
|
43
45
|
},
|
|
44
46
|
"devDependencies": {
|
|
45
47
|
"egg": "^2.26.1"
|
|
@@ -47,5 +49,5 @@
|
|
|
47
49
|
"publishConfig": {
|
|
48
50
|
"access": "public"
|
|
49
51
|
},
|
|
50
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "de1a917ec6d1b38a9cc5e6ffe2179b74e65ba114"
|
|
51
53
|
}
|