@zerooneit/expressive-tea 1.2.3 → 1.3.0-beta.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/.circleci/config.yml +9 -0
- package/README.md +70 -88
- package/classes/Boot.d.ts +7 -1
- package/classes/Boot.js +36 -133
- package/classes/LoadBalancer.d.ts +8 -0
- package/classes/LoadBalancer.js +31 -0
- package/classes/MetaData.js +1 -1
- package/classes/ProxyRoute.d.ts +14 -0
- package/classes/ProxyRoute.js +40 -0
- package/classes/Settings.d.ts +4 -2
- package/classes/Settings.js +29 -10
- package/decorators/annotations.d.ts +1 -0
- package/decorators/module.js +1 -1
- package/decorators/router.d.ts +3 -2
- package/decorators/router.js +8 -23
- package/decorators/server.d.ts +16 -14
- package/decorators/server.js +46 -33
- package/engines/http/index.d.ts +17 -0
- package/engines/http/index.js +60 -0
- package/engines/teacup/index.d.ts +19 -0
- package/engines/teacup/index.js +107 -0
- package/engines/teapot/index.d.ts +23 -0
- package/engines/teapot/index.js +157 -0
- package/engines/websocket/index.d.ts +9 -0
- package/engines/websocket/index.js +37 -0
- package/helpers/boot-helper.d.ts +7 -0
- package/helpers/boot-helper.js +78 -0
- package/helpers/object-helper.d.ts +1 -0
- package/helpers/object-helper.js +9 -1
- package/helpers/server.d.ts +6 -4
- package/helpers/server.js +54 -15
- package/helpers/teapot-helper.d.ts +17 -0
- package/helpers/teapot-helper.js +47 -0
- package/helpers/websocket-helper.d.ts +5 -0
- package/helpers/websocket-helper.js +20 -0
- package/inversify.config.d.ts +9 -0
- package/inversify.config.js +8 -0
- package/libs/classNames.d.ts +1 -0
- package/libs/classNames.js +4 -0
- package/libs/constants.d.ts +4 -2
- package/libs/constants.js +8 -6
- package/libs/interfaces.d.ts +27 -15
- package/package.json +30 -8
- package/services/WebsocketService.d.ts +8 -7
- package/services/WebsocketService.js +12 -7
- package/.editorconfig +0 -31
- package/.travis.yml +0 -26
- package/CHANGELOG.md +0 -256
- package/CODE_OF_CONDUCT.md +0 -76
- package/CONTRIBUTING.md +0 -92
- package/SECURITY.md +0 -20
- package/codecov.yml +0 -10
- package/jsdocs-json.json +0 -35
- package/tools/jsdocs/helpers/table-builder.js +0 -57
- package/tools/jsdocs/plugins/custom-tags.js +0 -33
- package/tools/jsdocs/plugins/scape-at.js +0 -24
package/libs/interfaces.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
/// <reference types="node" />
|
|
3
|
-
import { Express,
|
|
3
|
+
import { Express, RequestHandler, Router } from 'express';
|
|
4
4
|
import * as http from 'http';
|
|
5
5
|
import * as https from 'https';
|
|
6
6
|
import { ExpressiveTeaMiddleware, ExpressMiddlewareHandler } from './types';
|
|
@@ -47,6 +47,17 @@ export interface ExpressiveTeaPluginProps {
|
|
|
47
47
|
name: string;
|
|
48
48
|
priority: number;
|
|
49
49
|
}
|
|
50
|
+
export interface ExpressiveTeaPotSettings {
|
|
51
|
+
serverKey: string;
|
|
52
|
+
clientKey: string;
|
|
53
|
+
port?: number;
|
|
54
|
+
}
|
|
55
|
+
export interface ExpressiveTeaCupSettings {
|
|
56
|
+
address: string;
|
|
57
|
+
clientKey: string;
|
|
58
|
+
mountTo: string;
|
|
59
|
+
serverUrl: string;
|
|
60
|
+
}
|
|
50
61
|
/**
|
|
51
62
|
* Define Expressive Module Properties.
|
|
52
63
|
* @typedef {Object} ExpressiveTeaModuleProps
|
|
@@ -66,11 +77,22 @@ export interface IExpressiveTeaModule {
|
|
|
66
77
|
readonly controllers: any[];
|
|
67
78
|
__register(server: Express): void;
|
|
68
79
|
}
|
|
80
|
+
export interface IExpressiveTeaProxySettings {
|
|
81
|
+
name: string;
|
|
82
|
+
source: string;
|
|
83
|
+
targetUrl: string;
|
|
84
|
+
}
|
|
85
|
+
export interface IExpressiveTeaProxy {
|
|
86
|
+
readonly source: string;
|
|
87
|
+
readonly target: string;
|
|
88
|
+
readonly proxyHandler: RequestHandler;
|
|
89
|
+
__register(server: Express): void;
|
|
90
|
+
}
|
|
69
91
|
export interface IExpressiveTeaRoute {
|
|
70
92
|
readonly router: Router;
|
|
71
93
|
readonly mountpoint: string;
|
|
72
|
-
__mount(parent: Router):
|
|
73
|
-
|
|
94
|
+
__mount(parent: Router): IExpressiveTeaRoute;
|
|
95
|
+
__registerHandler(options: ExpressiveTeaHandlerOptions): ExpressMiddlewareHandler;
|
|
74
96
|
}
|
|
75
97
|
/**
|
|
76
98
|
* @typedef {Object} ExpressiveTeaApplication
|
|
@@ -91,7 +113,7 @@ export interface ExpressiveTeaStatic {
|
|
|
91
113
|
virtual: string | null;
|
|
92
114
|
options: ExpressiveTeaStaticFileServer | never;
|
|
93
115
|
}
|
|
94
|
-
export interface
|
|
116
|
+
export interface ExpressiveTeaDirective {
|
|
95
117
|
name: string;
|
|
96
118
|
settings: any[];
|
|
97
119
|
}
|
|
@@ -101,6 +123,7 @@ export interface ExpressiveTeaHandlerOptions {
|
|
|
101
123
|
handler: ExpressiveTeaMiddleware & ExpressiveTeaMiddlewareExtends;
|
|
102
124
|
target: unknown;
|
|
103
125
|
propertyKey: string | symbol;
|
|
126
|
+
settings?: any;
|
|
104
127
|
}
|
|
105
128
|
export interface ExpressiveTeaArgumentOptions {
|
|
106
129
|
key: string | symbol;
|
|
@@ -115,14 +138,3 @@ export interface ExpressiveTeaAnnotations {
|
|
|
115
138
|
export interface ExpressiveTeaMiddlewareExtends {
|
|
116
139
|
$middlewares?: ExpressMiddlewareHandler[];
|
|
117
140
|
}
|
|
118
|
-
export interface IExpressiveTeaProxySettings {
|
|
119
|
-
name: string;
|
|
120
|
-
source: string;
|
|
121
|
-
targetUrl: string;
|
|
122
|
-
}
|
|
123
|
-
export interface IExpressiveTeaProxy {
|
|
124
|
-
readonly source: string;
|
|
125
|
-
readonly target: string;
|
|
126
|
-
readonly proxyHandler: RequestHandler;
|
|
127
|
-
__register(server: Express): void;
|
|
128
|
-
}
|
package/package.json
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zerooneit/expressive-tea",
|
|
3
|
-
"version": "1.2
|
|
3
|
+
"version": "1.3.0-beta.2",
|
|
4
4
|
"description": "A REST API over Express and Typescript",
|
|
5
5
|
"main": "classes/Boot.js",
|
|
6
|
+
"engines": {
|
|
7
|
+
"node": ">=12.0.0"
|
|
8
|
+
},
|
|
6
9
|
"scripts": {
|
|
7
10
|
"test": "npm run linter && jest --clearCache && jest --coverage --ci --detectOpenHandles --forceExit --silent --runInBand",
|
|
8
11
|
"test:dev": "npm run linter && jest --clearCache && jest --detectOpenHandles --forceExit",
|
|
@@ -22,20 +25,27 @@
|
|
|
22
25
|
],
|
|
23
26
|
"license": "Apache-2.0",
|
|
24
27
|
"devDependencies": {
|
|
25
|
-
"@expressive-tea/plugin": "
|
|
28
|
+
"@expressive-tea/plugin": "0.0.4",
|
|
26
29
|
"@types/bluebird": "3.5.36",
|
|
27
30
|
"@types/express": "4.17.13",
|
|
28
|
-
"@types/
|
|
31
|
+
"@types/express-http-proxy": "1.6.3",
|
|
32
|
+
"@types/express-serve-static-core": "4.17.28",
|
|
33
|
+
"@types/jest": "27.5.1",
|
|
29
34
|
"@types/lodash": "4.14.182",
|
|
35
|
+
"@types/node": "17.0.36",
|
|
36
|
+
"@types/reflect-metadata": "0.1.0",
|
|
37
|
+
"@types/socket.io": "3.0.2",
|
|
38
|
+
"@types/socket.io-client": "3.0.0",
|
|
30
39
|
"@types/ws": "8.5.3",
|
|
40
|
+
"trash-cli":"5.0.0",
|
|
41
|
+
"http-terminator": "3.2.0",
|
|
31
42
|
"jest": "28.1.0",
|
|
32
|
-
"jest-express": "
|
|
43
|
+
"jest-express": "1.12.0",
|
|
33
44
|
"jest-junit": "13.2.0",
|
|
34
45
|
"reflect-metadata": "0.1.13",
|
|
35
46
|
"rimraf": "3.0.2",
|
|
36
47
|
"supertest": "6.2.3",
|
|
37
48
|
"toast-jsdoc": "1.0.2",
|
|
38
|
-
"trash-cli": "5.0.0",
|
|
39
49
|
"ts-jest": "28.0.3",
|
|
40
50
|
"ts-node": "10.8.0",
|
|
41
51
|
"tslint": "6.1.3",
|
|
@@ -43,16 +53,20 @@
|
|
|
43
53
|
},
|
|
44
54
|
"dependencies": {
|
|
45
55
|
"bluebird": "3.7.2",
|
|
56
|
+
"eiows": "4.1.2",
|
|
46
57
|
"express": "4.18.1",
|
|
47
|
-
"express-http-proxy": "
|
|
58
|
+
"express-http-proxy": "1.6.3",
|
|
48
59
|
"inversify": "6.0.1",
|
|
49
60
|
"inversify-inject-decorators": "3.1.0",
|
|
50
61
|
"lodash": "4.17.21",
|
|
62
|
+
"socket.io": "4.5.1",
|
|
63
|
+
"socket.io-client": "4.5.1",
|
|
64
|
+
"url-scheme": "1.0.5",
|
|
51
65
|
"ws": "8.7.0"
|
|
52
66
|
},
|
|
53
67
|
"repository": {
|
|
54
68
|
"type": "git",
|
|
55
|
-
"url": "git+https://github.com/
|
|
69
|
+
"url": "git+https://github.com/Zero-OneiT/expresive-tea.git"
|
|
56
70
|
},
|
|
57
71
|
"keywords": [
|
|
58
72
|
"Typescript",
|
|
@@ -89,5 +103,13 @@
|
|
|
89
103
|
"bugs": {
|
|
90
104
|
"url": "https://github.com/Expressive-Tea/expresive-tea/issues"
|
|
91
105
|
},
|
|
92
|
-
"homepage": "https://github.com/Expressive-Tea/expresive-tea#readme"
|
|
106
|
+
"homepage": "https://github.com/Expressive-Tea/expresive-tea#readme",
|
|
107
|
+
"optionalDependencies": {
|
|
108
|
+
"bufferutil": "4.0.6",
|
|
109
|
+
"utf-8-validate": "^5.0.9"
|
|
110
|
+
},
|
|
111
|
+
"resolutions": {
|
|
112
|
+
"set-value": "4.1.0",
|
|
113
|
+
"glob-parent": "6.0.2"
|
|
114
|
+
}
|
|
93
115
|
}
|
|
@@ -5,15 +5,16 @@ import * as http from 'http';
|
|
|
5
5
|
import * as https from 'https';
|
|
6
6
|
export default class WebsocketService {
|
|
7
7
|
static instance: WebsocketService;
|
|
8
|
-
private
|
|
9
|
-
private
|
|
8
|
+
private ws;
|
|
9
|
+
private wss;
|
|
10
10
|
httpServer: http.Server;
|
|
11
11
|
httpsServer: https.Server;
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
constructor(ws?: WebSocket.Server | never, wss?: WebSocket.Server | never);
|
|
13
|
+
getWebsocket(httpServer: http.Server | https.Server): WebSocket.Server;
|
|
14
|
+
setHttpServer(httpServer: http.Server | https.Server): void;
|
|
15
|
+
setWebSocket(ws: WebSocket.Server): void;
|
|
16
|
+
setSecureWebsocket(wss: WebSocket.Server): void;
|
|
16
17
|
static getInstance(ws?: WebSocket.Server, wss?: WebSocket.Server): WebsocketService;
|
|
17
|
-
static init(ws
|
|
18
|
+
static init(ws?: WebSocket.Server, wss?: WebSocket.Server): void;
|
|
18
19
|
static clear(): void;
|
|
19
20
|
}
|
|
@@ -3,7 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const https = require("https");
|
|
4
4
|
class WebsocketService {
|
|
5
5
|
constructor(ws, wss) {
|
|
6
|
-
this.isDetached = false;
|
|
7
6
|
if (WebsocketService.instance) {
|
|
8
7
|
return WebsocketService.instance;
|
|
9
8
|
}
|
|
@@ -11,17 +10,23 @@ class WebsocketService {
|
|
|
11
10
|
this.wss = wss;
|
|
12
11
|
WebsocketService.instance = this;
|
|
13
12
|
}
|
|
14
|
-
getWebsocket(
|
|
15
|
-
return (
|
|
13
|
+
getWebsocket(httpServer) {
|
|
14
|
+
return (httpServer instanceof https.Server) ? this.wss : this.ws;
|
|
16
15
|
}
|
|
17
|
-
setHttpServer(
|
|
18
|
-
if (
|
|
19
|
-
this.httpsServer =
|
|
16
|
+
setHttpServer(httpServer) {
|
|
17
|
+
if (httpServer instanceof https.Server) {
|
|
18
|
+
this.httpsServer = httpServer;
|
|
20
19
|
}
|
|
21
20
|
else {
|
|
22
|
-
this.httpServer =
|
|
21
|
+
this.httpServer = httpServer;
|
|
23
22
|
}
|
|
24
23
|
}
|
|
24
|
+
setWebSocket(ws) {
|
|
25
|
+
this.ws = ws;
|
|
26
|
+
}
|
|
27
|
+
setSecureWebsocket(wss) {
|
|
28
|
+
this.wss = wss;
|
|
29
|
+
}
|
|
25
30
|
static getInstance(ws, wss) {
|
|
26
31
|
if (!WebsocketService.instance) {
|
|
27
32
|
WebsocketService.instance = new WebsocketService(ws, wss);
|
package/.editorconfig
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
# http://editorconfig.org
|
|
2
|
-
root = true
|
|
3
|
-
|
|
4
|
-
[*]
|
|
5
|
-
indent_style = space
|
|
6
|
-
indent_size = 2
|
|
7
|
-
end_of_line = lf
|
|
8
|
-
charset = utf-8
|
|
9
|
-
trim_trailing_whitespace = true
|
|
10
|
-
insert_final_newline = true
|
|
11
|
-
|
|
12
|
-
# Use 4 spaces for the Python files
|
|
13
|
-
[*.py]
|
|
14
|
-
indent_size = 4
|
|
15
|
-
max_line_length = 80
|
|
16
|
-
|
|
17
|
-
# The JSON files contain newlines inconsistently
|
|
18
|
-
[*.json]
|
|
19
|
-
insert_final_newline = false
|
|
20
|
-
|
|
21
|
-
# Makefiles always use tabs for indentation
|
|
22
|
-
[Makefile]
|
|
23
|
-
indent_style = tab
|
|
24
|
-
|
|
25
|
-
# Batch files use tabs for indentation
|
|
26
|
-
[*.bat]
|
|
27
|
-
indent_style = tab
|
|
28
|
-
|
|
29
|
-
[*.md]
|
|
30
|
-
trim_trailing_whitespace = false
|
|
31
|
-
|
package/.travis.yml
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
language: node_js
|
|
2
|
-
node_js:
|
|
3
|
-
- '10'
|
|
4
|
-
- '13'
|
|
5
|
-
before_script:
|
|
6
|
-
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
|
7
|
-
- chmod +x ./cc-test-reporter
|
|
8
|
-
- "./cc-test-reporter before-build"
|
|
9
|
-
- npm install -g gulp-cli
|
|
10
|
-
script: npm test
|
|
11
|
-
env:
|
|
12
|
-
- CODECOV_TOKEN="3dab63ec-b748-4e67-8d23-9f3a998281f3"
|
|
13
|
-
- CC_TEST_REPORTER_ID="bd26cc6c907283d1564f5f881621984f3414461bb36c5005aa0bf3b47e2dac9b"
|
|
14
|
-
after_success:
|
|
15
|
-
- bash <(curl -s https://codecov.io/bash)
|
|
16
|
-
- "./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT"
|
|
17
|
-
notifications:
|
|
18
|
-
slack:
|
|
19
|
-
secure: BKRfnhTZ4e0PsITk1MNuQkaxbYdk/PwrTGyUNXqSEYEFmadyzbd6VZaX9tVq9Ae3vnwp31BmW2exfT8ZDt5o5Yqj6FGlb5ZyX5FxRH6QbHhYWz07pT7r9o36vSdtMldy9qnnSL7nUFTUuUnBwXmN3Leb6a9aGLG9nAbgTDuDDUZl800SF6nVlap+0rXhtdhDxXbtFTRrsJ0zjFLs/DuCXniIzNbcL55PFX8VnoqPK+u6DV29cmEUHO9HZZoIr4Upu7KC6Fe4vv/aBAY9w9n1I/wmUbKoPeTtr4eytbS1JBDsregkcR/k+J7Uz1VYiMWMJyo7XcBYGK374HLmzO6IY8DMndmOP2kyNVs27CKq+B0e3RlGfKBxpj614ZQSKPY4BGlWkyj9+PsYi7FpH6BnCpCa4KQbckLvCU8kAEJi8VQpiXdK6K0WlDt3dpSA/Hx41uJTSJhraLyhc/757xeuybEd4pCzXCDqNU/HBrChDyZ6jYROMyrWfVLSIoFzcZshFnHQ6/KCT4SGjkZFOC8dafNk5cfI+OpQ+oW7h0PvmV/ODisfG4MtvAzF5OjUIMttsDC1eacr86udBwV5G19vOpiukLsxbo9Kumo6aM7+H84doyDxYnsjOV5MC/orzlWrMBj7E2EGoIS/7aKHzkhUddG+qruIqA/SGsyzqkAxiyU=
|
|
20
|
-
deploy:
|
|
21
|
-
provider: npm
|
|
22
|
-
email: aion.chrno@gmail.com
|
|
23
|
-
api_key:
|
|
24
|
-
secure: Frclk95fj1cLGRirqscIZVqoqLebMgNaLBHXVvTlDu9+Q7ufuK0Vi9SPFC/ZhdgovtzKdGZtwvVmuFCCi/P7lLQIgZL7RKw0CHxHfd+oCR+oyKLOKNO2EcILKkBLdf3uAoCwBldXRxxgjCRDmmlo5QWdTbQlnabs6Nafld6zPKmhjryjmr2HReaFd95ni1Po35CRRPO/Yke8BfSHNcTh+iXIRCBTA28GY6fsyu45JerFH09KkGWUfaEqUqGR8XCEAXuu/t1G6Yq5CF4nV6LFgR5uw1EdWInw1yp4ng18Es76Uk7CL+v+E4bTLkh/IXtSQtBKe+C7xQSUp4pLveeBi9XdK5DcU8QUF+BJDz3TlaKf+HDR1hxB0kyMXhozsybXGpNu22x6FntVQhBTT7ix6gYwobtlVn0mQg8TAIy/VK1/FPd8TzA3vnV8pfcsKt7ntnsx4NGpCqLjDPdnFpOQADZygLIRVcmuanfwjPl9q1kMjGDypZo8AqgC/tE3HAVqAF4ilnzTeHi0uQYyrqj0OD9gjOm4Sixu9e2UzKp+595eVWGFGo4NPHnunbCLXJXALjF9hh/nD7gVH73hqd650/lVPwG5HpRjv1Ws/PJLaRRg4JXfGP0YNmjyADMHbMQ6M3pCi2ypuTIbZV7BNmzsws1dVLn2MVifXY+4rhRyOoY=
|
|
25
|
-
on:
|
|
26
|
-
tags: true
|
package/CHANGELOG.md
DELETED
|
@@ -1,256 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
<a name="v1.2.0"></a>
|
|
3
|
-
## [v1.2.0](https://github.com/Zero-OneiT/expresive-tea/compare/v1.1.4...v1.2.0)
|
|
4
|
-
|
|
5
|
-
> 2020-07-11
|
|
6
|
-
|
|
7
|
-
### ARCHITECTURE
|
|
8
|
-
|
|
9
|
-
* [e5389c8](https://github.com/Zero-OneiT/expresive-tea/commit/e5389c814e17711bc098b24a4989c3901cfc462a) Test, Documentation Improvement
|
|
10
|
-
|
|
11
|
-
### FEATURES
|
|
12
|
-
|
|
13
|
-
* [4e52465](https://github.com/Zero-OneiT/expresive-tea/commit/4e524656a5c4091e52e63ffbdf138147fc505f29) View and Parameter Decorators.
|
|
14
|
-
* [f629a1b](https://github.com/Zero-OneiT/expresive-tea/commit/f629a1b371b92e24c4936f90ae4a77b30bed606c) View and Parameter Decorators.
|
|
15
|
-
* [a6b21a1](https://github.com/Zero-OneiT/expresive-tea/commit/a6b21a172184af268c8d90738fd295a4b26c71d0) View and Parameter Decorators.
|
|
16
|
-
* [791e037](https://github.com/Zero-OneiT/expresive-tea/commit/791e03786c62f59688c52729bfc563ee59e67916) View and Parameter Decorators.
|
|
17
|
-
|
|
18
|
-
### Release Work
|
|
19
|
-
|
|
20
|
-
* [ee3fec0](https://github.com/Zero-OneiT/expresive-tea/commit/ee3fec0b838690a348ea00f9ff0c2df10fe9d7c6) 1.2.0 Release
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
<a name="v1.1.4"></a>
|
|
24
|
-
## [v1.1.4](https://github.com/Zero-OneiT/expresive-tea/compare/v1.1.3...v1.1.4)
|
|
25
|
-
|
|
26
|
-
> 2020-03-22
|
|
27
|
-
|
|
28
|
-
### Architecture
|
|
29
|
-
|
|
30
|
-
* [a35395d](https://github.com/Zero-OneiT/expresive-tea/commit/a35395dae88bfa2a3adade67dc382c2374beb9ee) Added Notification and Deploy
|
|
31
|
-
* [e8b4b9b](https://github.com/Zero-OneiT/expresive-tea/commit/e8b4b9be73529b734181de6bedb4dae741bfa2fc) Added Notification and Deploy
|
|
32
|
-
|
|
33
|
-
### Plugin Engine
|
|
34
|
-
|
|
35
|
-
* [1815cda](https://github.com/Zero-OneiT/expresive-tea/commit/1815cdaf51c1a27bc7e4160035deb9b13950594c) Refactoring Metadata
|
|
36
|
-
* [991e6d5](https://github.com/Zero-OneiT/expresive-tea/commit/991e6d53098f14b6f10576ab75bf10081c160b3f) Refactoring Metadata
|
|
37
|
-
* [975cfa6](https://github.com/Zero-OneiT/expresive-tea/commit/975cfa6d37d808cb27fde4539f269aec1f008d8e) Refactoring Metadata
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
<a name="v1.1.3"></a>
|
|
41
|
-
## [v1.1.3](https://github.com/Zero-OneiT/expresive-tea/compare/v1.1.2...v1.1.3)
|
|
42
|
-
|
|
43
|
-
> 2020-03-18
|
|
44
|
-
|
|
45
|
-
### Bug Fixing
|
|
46
|
-
|
|
47
|
-
* [56ead3e](https://github.com/Zero-OneiT/expresive-tea/commit/56ead3e153ccf2369ccdbab2aadde4300a744cfc) Reflect Metadata is getting incorrect instance.
|
|
48
|
-
* [c97e2cd](https://github.com/Zero-OneiT/expresive-tea/commit/c97e2cd3036a1c84cff68404ee74cd556c18a384) Reflect Metadata is getting incorrect instance.
|
|
49
|
-
|
|
50
|
-
### Hot Fixes
|
|
51
|
-
|
|
52
|
-
* [f7bd252](https://github.com/Zero-OneiT/expresive-tea/commit/f7bd2529539d2c7bd67fcf0ca9a96d9babc3d39b) Plugin Issues
|
|
53
|
-
* [596926c](https://github.com/Zero-OneiT/expresive-tea/commit/596926c2c833e43cf6e7881f23880fd3142e7dd3) Plugin Issues
|
|
54
|
-
|
|
55
|
-
### Maintenance
|
|
56
|
-
|
|
57
|
-
* [a7db6b1](https://github.com/Zero-OneiT/expresive-tea/commit/a7db6b13556bb7aafe798f1eebaa4483d747b172) Fixes Small Issues and Documentation
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
<a name="v1.1.2"></a>
|
|
61
|
-
## [v1.1.2](https://github.com/Zero-OneiT/expresive-tea/compare/v1.1.1...v1.1.2)
|
|
62
|
-
|
|
63
|
-
> 2020-03-16
|
|
64
|
-
|
|
65
|
-
### Hot Fixes
|
|
66
|
-
|
|
67
|
-
* [d5cfd64](https://github.com/Zero-OneiT/expresive-tea/commit/d5cfd64edb826d30fb25b8418c562bfc91beeffa) Plugin Issues
|
|
68
|
-
* [a3c0e01](https://github.com/Zero-OneiT/expresive-tea/commit/a3c0e01d4a8f7f09a516340b3d36ed116d02c619) Plugin Issues
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
<a name="v1.1.1"></a>
|
|
72
|
-
## [v1.1.1](https://github.com/Zero-OneiT/expresive-tea/compare/v1.1.0...v1.1.1)
|
|
73
|
-
|
|
74
|
-
> 2020-02-25
|
|
75
|
-
|
|
76
|
-
### Maintenance
|
|
77
|
-
|
|
78
|
-
* [93ec93f](https://github.com/Zero-OneiT/expresive-tea/commit/93ec93fb875022fc502023b969f1b5aaed3a77ca) Fixes Small Issues and Documentation
|
|
79
|
-
* [45c6f7e](https://github.com/Zero-OneiT/expresive-tea/commit/45c6f7eaaf392daffecaf3fa1443ae5bc1d9ea3c) Fixes Small Issues and Documentation
|
|
80
|
-
* [cc44044](https://github.com/Zero-OneiT/expresive-tea/commit/cc44044b85dd5f9b2bf9b6e5f3bb1ecba498aedd) Fixes Small Issues and Documentation
|
|
81
|
-
* [5662633](https://github.com/Zero-OneiT/expresive-tea/commit/56626336b84b3030897c5ece4b9debe1b8f13cbb) Fixes Small Issues and Documentation
|
|
82
|
-
* [e46a599](https://github.com/Zero-OneiT/expresive-tea/commit/e46a5993702048a9f0e8bf4af2644837bc93a75c) Fixes Small Issues and Documentation
|
|
83
|
-
* [131c7b7](https://github.com/Zero-OneiT/expresive-tea/commit/131c7b7f61dab81964283657ce0b0934754c5f23) Small issues and refactoring
|
|
84
|
-
* [ec51c34](https://github.com/Zero-OneiT/expresive-tea/commit/ec51c340c999e0a18349e0e1a5f78667fa05e4f2) Fixes Small Issues and Documentation
|
|
85
|
-
* [945e336](https://github.com/Zero-OneiT/expresive-tea/commit/945e336013c2155f42cd0301d784ad021f26e75a) Fixes Small Issues and Documentation
|
|
86
|
-
|
|
87
|
-
### Release Work
|
|
88
|
-
|
|
89
|
-
* [c921154](https://github.com/Zero-OneiT/expresive-tea/commit/c921154d5da8963ceb12eb6b8a0d5cd2c6bb0e8e) Finished Release 1.1.1
|
|
90
|
-
* [1cbfe8c](https://github.com/Zero-OneiT/expresive-tea/commit/1cbfe8cd78c778160c131460af0a9f6b1616e824) v1.1.0 - Plugin Engine
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
<a name="v1.1.0"></a>
|
|
94
|
-
## [v1.1.0](https://github.com/Zero-OneiT/expresive-tea/compare/v1.0.0...v1.1.0)
|
|
95
|
-
|
|
96
|
-
> 2019-10-19
|
|
97
|
-
|
|
98
|
-
### Documentation
|
|
99
|
-
|
|
100
|
-
* [817810e](https://github.com/Zero-OneiT/expresive-tea/commit/817810e5fb1b982cb56fc6cd58bd8f99871a92e5) Added Logo
|
|
101
|
-
* [fe69be9](https://github.com/Zero-OneiT/expresive-tea/commit/fe69be9a6e9ba0d2047ccb6fc65841e13c559725) Added Logo
|
|
102
|
-
* [871f06c](https://github.com/Zero-OneiT/expresive-tea/commit/871f06cccd5337af4b08a6d6fdea8122e1aa4d62) Added Logo
|
|
103
|
-
* [502f1c6](https://github.com/Zero-OneiT/expresive-tea/commit/502f1c6b2d4ab4483b62bcb87faf31c9ab165fa5) Added Plugin Decorator
|
|
104
|
-
|
|
105
|
-
### Engines Work
|
|
106
|
-
|
|
107
|
-
* [6050a69](https://github.com/Zero-OneiT/expresive-tea/commit/6050a69165c24e5fa4e50502ab48268ccaeffb6a) Adding Plugin Engine
|
|
108
|
-
|
|
109
|
-
### Framework Core
|
|
110
|
-
|
|
111
|
-
* [a050c84](https://github.com/Zero-OneiT/expresive-tea/commit/a050c84379e8a07bd8b5f3d309c7499b72fd323f) Publish Tooling
|
|
112
|
-
* [ae56fc1](https://github.com/Zero-OneiT/expresive-tea/commit/ae56fc1a62849f89c4526f53338ad4fa5dc84a31) Publish Tooling
|
|
113
|
-
* [40d2528](https://github.com/Zero-OneiT/expresive-tea/commit/40d25282d458e1105f808b71f5756474145e6bad) Publish Tooling
|
|
114
|
-
* [60d3804](https://github.com/Zero-OneiT/expresive-tea/commit/60d38048225bea4df47bb2534d9e33db55eed82c) Publish Tooling
|
|
115
|
-
* [a92d774](https://github.com/Zero-OneiT/expresive-tea/commit/a92d7741dfb147d3f71f1d53b30dc031bbc9b4ac) Publish Tooling
|
|
116
|
-
* [7e7700c](https://github.com/Zero-OneiT/expresive-tea/commit/7e7700cb68bf977a751d94cda8963609064e1fa9) Publish Tooling
|
|
117
|
-
|
|
118
|
-
### Release Work
|
|
119
|
-
|
|
120
|
-
* [d0c56c5](https://github.com/Zero-OneiT/expresive-tea/commit/d0c56c5ac1902dcbeedcca84ba21bb0a1b94f961) v1.1.0 Release
|
|
121
|
-
* [4b9ab65](https://github.com/Zero-OneiT/expresive-tea/commit/4b9ab65fe54b7cbdc0e83ce05fe23e6e3d54f519) Production Release
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
<a name="v1.0.0"></a>
|
|
125
|
-
## [v1.0.0](https://github.com/Zero-OneiT/expresive-tea/compare/v0.1.1...v1.0.0)
|
|
126
|
-
|
|
127
|
-
> 2019-09-10
|
|
128
|
-
|
|
129
|
-
### Badges
|
|
130
|
-
|
|
131
|
-
* [8b8cd95](https://github.com/Zero-OneiT/expresive-tea/commit/8b8cd959f089376f6867721c01eb86993c1ef362) Added Test Coverage on Code Climate
|
|
132
|
-
|
|
133
|
-
### Documentation
|
|
134
|
-
|
|
135
|
-
* [5943334](https://github.com/Zero-OneiT/expresive-tea/commit/59433346f19fd44fa003d5a118d671573b639d79) Update Badges
|
|
136
|
-
|
|
137
|
-
### Features
|
|
138
|
-
|
|
139
|
-
* [7244473](https://github.com/Zero-OneiT/expresive-tea/commit/7244473e158e14b5a2f0217ed8aedcc69c0d310c) Adding Plugin Structure
|
|
140
|
-
* [997700f](https://github.com/Zero-OneiT/expresive-tea/commit/997700f8492c31d53e95f97d22f12e11351e949a) Adding Plugin Structure
|
|
141
|
-
|
|
142
|
-
### Refactored Code
|
|
143
|
-
|
|
144
|
-
* [a2f08a1](https://github.com/Zero-OneiT/expresive-tea/commit/a2f08a12489a4032096cfd9f0fa034b56918993d) Improve Code
|
|
145
|
-
* [ce043f5](https://github.com/Zero-OneiT/expresive-tea/commit/ce043f53db0df0d7408e264bf63e1b519a1f2987) Improve Code
|
|
146
|
-
* [8372d66](https://github.com/Zero-OneiT/expresive-tea/commit/8372d66455b571a8c514d1e51b162cc2112e3b30) Improve Code
|
|
147
|
-
* [9e9dab7](https://github.com/Zero-OneiT/expresive-tea/commit/9e9dab7874181c6866a5ad451fc5d37aad34e3ba) Improve Code
|
|
148
|
-
* [156e2b0](https://github.com/Zero-OneiT/expresive-tea/commit/156e2b024d65a5e553f41a9e41cf0e9d3e07578a) Improve Code
|
|
149
|
-
|
|
150
|
-
### Release Work
|
|
151
|
-
|
|
152
|
-
* [1aa9cfb](https://github.com/Zero-OneiT/expresive-tea/commit/1aa9cfbf51d150df1184859362417677b25e5c72) Production Release 1.0.0
|
|
153
|
-
* [a542f15](https://github.com/Zero-OneiT/expresive-tea/commit/a542f1540c286a165ccad72f3aa28a6d772b6f5b) Production Stable Version
|
|
154
|
-
|
|
155
|
-
### Test Engine
|
|
156
|
-
|
|
157
|
-
* [e704314](https://github.com/Zero-OneiT/expresive-tea/commit/e704314f62cb8504a4bdd9445d2f3cb5925b9d4f) Benchmark Test
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
<a name="v0.1.1"></a>
|
|
161
|
-
## [v0.1.1](https://github.com/Zero-OneiT/expresive-tea/compare/v0.1.0...v0.1.1)
|
|
162
|
-
|
|
163
|
-
> 2019-08-05
|
|
164
|
-
|
|
165
|
-
### Code Improvement
|
|
166
|
-
|
|
167
|
-
* [c7039b9](https://github.com/Zero-OneiT/expresive-tea/commit/c7039b97bb72a5ef257527d74ffad7d84229d37a) Improve Code
|
|
168
|
-
* [b59fcbf](https://github.com/Zero-OneiT/expresive-tea/commit/b59fcbf0fddc1ee3eb911e6adcfb9d4eb0428d10) Improve Code
|
|
169
|
-
* [fbb179a](https://github.com/Zero-OneiT/expresive-tea/commit/fbb179ae1e90f3814edcb0fe6c055c822ae708dd) Improve Code
|
|
170
|
-
|
|
171
|
-
### Release Work
|
|
172
|
-
|
|
173
|
-
* [685ecc7](https://github.com/Zero-OneiT/expresive-tea/commit/685ecc7fc00260d83c7e740710e57c0b2151f528) Production Release to 0.1.1
|
|
174
|
-
* [e73992e](https://github.com/Zero-OneiT/expresive-tea/commit/e73992e27618e919c19d5d39e04c15e4fe821e0c) Version bump
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
<a name="v0.1.0"></a>
|
|
178
|
-
## [v0.1.0](https://github.com/Zero-OneiT/expresive-tea/compare/v0.0.7-RC...v0.1.0)
|
|
179
|
-
|
|
180
|
-
> 2019-08-04
|
|
181
|
-
|
|
182
|
-
### Documentation
|
|
183
|
-
|
|
184
|
-
* [9076aa4](https://github.com/Zero-OneiT/expresive-tea/commit/9076aa469fe93bd6c6c58faad16f3ae982da1682) Added Correct Path to documentation
|
|
185
|
-
* [2060f5b](https://github.com/Zero-OneiT/expresive-tea/commit/2060f5b9acae0cae6e072442d38e35528b9b3331) Added Correct Path to documentation
|
|
186
|
-
* [03ecdaa](https://github.com/Zero-OneiT/expresive-tea/commit/03ecdaaa9050b2fbea479bf62369d17f6eafb198) Added Project Documentation
|
|
187
|
-
|
|
188
|
-
### Documentation
|
|
189
|
-
|
|
190
|
-
* [e75374d](https://github.com/Zero-OneiT/expresive-tea/commit/e75374da6f9663d2b2cbe36ffecc29f7f798d97b) JSDocs Tags and Documentation
|
|
191
|
-
|
|
192
|
-
### Test Engine
|
|
193
|
-
|
|
194
|
-
* [5c945bd](https://github.com/Zero-OneiT/expresive-tea/commit/5c945bd986ceb0daae7e49208e9e0012563f3cac) Remove Cache from Travis
|
|
195
|
-
* [04924ea](https://github.com/Zero-OneiT/expresive-tea/commit/04924eafb9048cb3c6d3f5a7018b74fd843ca432) Test Framework - Adding jest as test framework. - Adding tests
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
<a name="v0.0.7-RC"></a>
|
|
199
|
-
## [v0.0.7-RC](https://github.com/Zero-OneiT/expresive-tea/compare/0.0.6-RC1...v0.0.7-RC)
|
|
200
|
-
|
|
201
|
-
> 2019-07-31
|
|
202
|
-
|
|
203
|
-
### Bug Fixing
|
|
204
|
-
|
|
205
|
-
* [61868c5](https://github.com/Zero-OneiT/expresive-tea/commit/61868c57c6bbdaae1cc7692fb14d8d1961475c68) Plug Inverse order and Typings.
|
|
206
|
-
* [f1cf891](https://github.com/Zero-OneiT/expresive-tea/commit/f1cf891a438cff86944063008d7e6258715037ce) Fixing Types and Plugin order.
|
|
207
|
-
* [4caab3f](https://github.com/Zero-OneiT/expresive-tea/commit/4caab3ff98a669413263765dd40580822b959bdc) Fixing Types and Plugin order.
|
|
208
|
-
|
|
209
|
-
### Refactored Code
|
|
210
|
-
|
|
211
|
-
* [5f509e0](https://github.com/Zero-OneiT/expresive-tea/commit/5f509e0947724077a5562c9c05625729081f0d08) Inverse plugin order and types.
|
|
212
|
-
|
|
213
|
-
### Release Work
|
|
214
|
-
|
|
215
|
-
* [97c08a1](https://github.com/Zero-OneiT/expresive-tea/commit/97c08a16cb5c0f0fd5f89132d8337f3958354bdb) Moving Release
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
<a name="0.0.6-RC1"></a>
|
|
219
|
-
## [0.0.6-RC1](https://github.com/Zero-OneiT/expresive-tea/compare/0.0.1-pre...0.0.6-RC1)
|
|
220
|
-
|
|
221
|
-
> 2019-06-19
|
|
222
|
-
|
|
223
|
-
### Release Work
|
|
224
|
-
|
|
225
|
-
* [694bd30](https://github.com/Zero-OneiT/expresive-tea/commit/694bd3020035c6fd86f8cb7a4d3a314955cdf927) Adding New Release Candidate Version
|
|
226
|
-
* [0a2ce1f](https://github.com/Zero-OneiT/expresive-tea/commit/0a2ce1f78d3156fa5813ce2d8ad811a629957223) Adding New Release Candidate Version
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
<a name="0.0.1-pre"></a>
|
|
230
|
-
## 0.0.1-pre
|
|
231
|
-
|
|
232
|
-
> 2019-05-04
|
|
233
|
-
|
|
234
|
-
### INITIAL
|
|
235
|
-
|
|
236
|
-
* [753f328](https://github.com/Zero-OneiT/expresive-tea/commit/753f328e617a8e9e8f7f4b297a4d7f4350785bda) Added Test Configuration and Code Improvements - Added Test Coverage and Framework. - Added Request Exceptions - Include Docker Implementation - Remove Controllers Decorators since is an abstract class. - Added JWT Service (need to be fixed) - Added Helpers model to add models as name. - Divide Webpack Configuration. - TSConfig should allow execute external debuggers and generate sourcemap - Change constants data. - Allow Error Handling to response to status code.
|
|
237
|
-
* [63f64d1](https://github.com/Zero-OneiT/expresive-tea/commit/63f64d11646451bd9b5d92d5a12ff625a9ab42c2) Initialize Commit
|
|
238
|
-
|
|
239
|
-
### Refactored Code
|
|
240
|
-
|
|
241
|
-
* [f6f2433](https://github.com/Zero-OneiT/expresive-tea/commit/f6f2433903bbd276fb833727fd3fb58a537bfa21) Move to Beta Version
|
|
242
|
-
* [f8b5b69](https://github.com/Zero-OneiT/expresive-tea/commit/f8b5b690a04d0d457d833532522b93ca27388a8e) Move to Beta Version
|
|
243
|
-
* [822b58e](https://github.com/Zero-OneiT/expresive-tea/commit/822b58e50f4181d5bab2c38835f8813e9d5811d7) Move to Beta Version
|
|
244
|
-
|
|
245
|
-
### Refactored Code
|
|
246
|
-
|
|
247
|
-
* [e141c45](https://github.com/Zero-OneiT/expresive-tea/commit/e141c450858ad80d2dbb5eb4b51be89c9fa6b1c1) Remove Packages
|
|
248
|
-
* [88583c1](https://github.com/Zero-OneiT/expresive-tea/commit/88583c1f0e0b1a09b94c7e5018c534dd62aae1cc) Remove Packages
|
|
249
|
-
* [86df5af](https://github.com/Zero-OneiT/expresive-tea/commit/86df5af191d5b387b4225b1ed85d8e18a57dab03) Remove Packages
|
|
250
|
-
* [544c088](https://github.com/Zero-OneiT/expresive-tea/commit/544c088e79a96d108104bafd5b7ba61910296a0a) Change Paths to Relative
|
|
251
|
-
* [bd63528](https://github.com/Zero-OneiT/expresive-tea/commit/bd63528a105c8d5c4bf1630da225ff46a8dce051) Change Paths to Relative
|
|
252
|
-
* [8e3b5b7](https://github.com/Zero-OneiT/expresive-tea/commit/8e3b5b7696a1e3b57aa884fc7a7e21a3f2928e20) Change to be package
|
|
253
|
-
* [cc2f8df](https://github.com/Zero-OneiT/expresive-tea/commit/cc2f8df37610e815b4777fa4dde875514663f050) Change to be package
|
|
254
|
-
* [540e276](https://github.com/Zero-OneiT/expresive-tea/commit/540e276b06a3aa5d6bc437547fcfcf02b8e7403a) Change to be package
|
|
255
|
-
* [bfa71a6](https://github.com/Zero-OneiT/expresive-tea/commit/bfa71a6a421fdeee0b345a047189c0a6b8d4e4d3) Change to be package
|
|
256
|
-
|
package/CODE_OF_CONDUCT.md
DELETED
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
# Contributor Covenant Code of Conduct
|
|
2
|
-
|
|
3
|
-
## Our Pledge
|
|
4
|
-
|
|
5
|
-
In the interest of fostering an open and welcoming environment, we as
|
|
6
|
-
contributors and maintainers pledge to making participation in our project and
|
|
7
|
-
our community a harassment-free experience for everyone, regardless of age, body
|
|
8
|
-
size, disability, ethnicity, sex characteristics, gender identity and expression,
|
|
9
|
-
level of experience, education, socio-economic status, nationality, personal
|
|
10
|
-
appearance, race, religion, or sexual identity and orientation.
|
|
11
|
-
|
|
12
|
-
## Our Standards
|
|
13
|
-
|
|
14
|
-
Examples of behavior that contributes to creating a positive environment
|
|
15
|
-
include:
|
|
16
|
-
|
|
17
|
-
* Using welcoming and inclusive language
|
|
18
|
-
* Being respectful of differing viewpoints and experiences
|
|
19
|
-
* Gracefully accepting constructive criticism
|
|
20
|
-
* Focusing on what is best for the community
|
|
21
|
-
* Showing empathy towards other community members
|
|
22
|
-
|
|
23
|
-
Examples of unacceptable behavior by participants include:
|
|
24
|
-
|
|
25
|
-
* The use of sexualized language or imagery and unwelcome sexual attention or
|
|
26
|
-
advances
|
|
27
|
-
* Trolling, insulting/derogatory comments, and personal or political attacks
|
|
28
|
-
* Public or private harassment
|
|
29
|
-
* Publishing others' private information, such as a physical or electronic
|
|
30
|
-
address, without explicit permission
|
|
31
|
-
* Other conduct which could reasonably be considered inappropriate in a
|
|
32
|
-
professional setting
|
|
33
|
-
|
|
34
|
-
## Our Responsibilities
|
|
35
|
-
|
|
36
|
-
Project maintainers are responsible for clarifying the standards of acceptable
|
|
37
|
-
behavior and are expected to take appropriate and fair corrective action in
|
|
38
|
-
response to any instances of unacceptable behavior.
|
|
39
|
-
|
|
40
|
-
Project maintainers have the right and responsibility to remove, edit, or
|
|
41
|
-
reject comments, commits, code, wiki edits, issues, and other contributions
|
|
42
|
-
that are not aligned to this Code of Conduct, or to ban temporarily or
|
|
43
|
-
permanently any contributor for other behaviors that they deem inappropriate,
|
|
44
|
-
threatening, offensive, or harmful.
|
|
45
|
-
|
|
46
|
-
## Scope
|
|
47
|
-
|
|
48
|
-
This Code of Conduct applies both within project spaces and in public spaces
|
|
49
|
-
when an individual is representing the project or its community. Examples of
|
|
50
|
-
representing a project or community include using an official project e-mail
|
|
51
|
-
address, posting via an official social media account, or acting as an appointed
|
|
52
|
-
representative at an online or offline event. Representation of a project may be
|
|
53
|
-
further defined and clarified by project maintainers.
|
|
54
|
-
|
|
55
|
-
## Enforcement
|
|
56
|
-
|
|
57
|
-
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
58
|
-
reported by contacting the project team at diego.resendez@zero-oneit.com. All
|
|
59
|
-
complaints will be reviewed and investigated and will result in a response that
|
|
60
|
-
is deemed necessary and appropriate to the circumstances. The project team is
|
|
61
|
-
obligated to maintain confidentiality with regard to the reporter of an incident.
|
|
62
|
-
Further details of specific enforcement policies may be posted separately.
|
|
63
|
-
|
|
64
|
-
Project maintainers who do not follow or enforce the Code of Conduct in good
|
|
65
|
-
faith may face temporary or permanent repercussions as determined by other
|
|
66
|
-
members of the project's leadership.
|
|
67
|
-
|
|
68
|
-
## Attribution
|
|
69
|
-
|
|
70
|
-
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
|
71
|
-
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
|
|
72
|
-
|
|
73
|
-
[homepage]: https://www.contributor-covenant.org
|
|
74
|
-
|
|
75
|
-
For answers to common questions about this code of conduct, see
|
|
76
|
-
https://www.contributor-covenant.org/faq
|