@goatlab/fluent-loki 0.6.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/README.md +31 -0
- package/dist/index.js +6 -0
- package/package.json +141 -0
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<!-- PROJECT SHIELDS -->
|
|
2
|
+
|
|
3
|
+
[![Stargazers][stars-shield]][stars-url]
|
|
4
|
+
[![Issues][issues-shield]][issues-url]
|
|
5
|
+
[![MIT License][license-shield]][license-url]
|
|
6
|
+
[](http://commitizen.github.io/cz-cli/)
|
|
7
|
+
|
|
8
|
+
<!-- PROJECT LOGO -->
|
|
9
|
+
<br />
|
|
10
|
+
<p align="center">
|
|
11
|
+
<a href="https://github.com/github_username/repo">
|
|
12
|
+
<img src="https://docs.goatlab.io/logo.png" alt="Logo" width="150" height="150">
|
|
13
|
+
</a>
|
|
14
|
+
|
|
15
|
+
<h3 align="center">GOAT-FLUENT</h3>
|
|
16
|
+
|
|
17
|
+
<p align="center">
|
|
18
|
+
Readable query Interface & API generator
|
|
19
|
+
<br />
|
|
20
|
+
<a href="https://docs.goatlab.io/#/0.5.x/fluent/fluent"><strong>Explore the docs »</strong></a>
|
|
21
|
+
<br />
|
|
22
|
+
<br />
|
|
23
|
+
<a href="https://codesandbox.io/s/goat-nestjs-tytmv?file=/src/main.ts">View Demo</a>
|
|
24
|
+
·
|
|
25
|
+
<a href="https://github.com/goat-io/fluent/issues">Report Bug</a>
|
|
26
|
+
·
|
|
27
|
+
<a href="https://github.com/goat-io/fluent/issues">Request Feature</a>
|
|
28
|
+
</p>
|
|
29
|
+
</p>
|
|
30
|
+
|
|
31
|
+
# Goat - Fluent
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LokiConnector = void 0;
|
|
4
|
+
const LokiConnector_1 = require("./LokiConnector");
|
|
5
|
+
Object.defineProperty(exports, "LokiConnector", { enumerable: true, get: function () { return LokiConnector_1.LokiConnector; } });
|
|
6
|
+
//# sourceMappingURL=index.js.map
|
package/package.json
ADDED
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@goatlab/fluent-loki",
|
|
3
|
+
"version": "0.6.1",
|
|
4
|
+
"scripts": {
|
|
5
|
+
"prebuild": "rimraf dist",
|
|
6
|
+
"prestart": "rimraf dist",
|
|
7
|
+
"predev": "rimraf dist",
|
|
8
|
+
"test": "jest --forceExit",
|
|
9
|
+
"dev": "tsc --watch",
|
|
10
|
+
"lint": "eslint src --fix",
|
|
11
|
+
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
|
|
12
|
+
"update:packages": "npm-check-updates -u && yarn",
|
|
13
|
+
"serve": "tsc -w",
|
|
14
|
+
"build": "tsc",
|
|
15
|
+
"pack": "npm-pack-zip",
|
|
16
|
+
"release": "release-it patch --no-npm.publish --ci",
|
|
17
|
+
"release:patch": "release-it patch --no-npm.publish --ci",
|
|
18
|
+
"release:minor": "release-it minor --no-npm.publish --ci",
|
|
19
|
+
"release:major": "release-it major --no-npm.publish --ci ",
|
|
20
|
+
"rc": "release-it --no-npm.publish --ci --preRelease=rc",
|
|
21
|
+
"rc:patch": "release-it patch --no-npm.publish --ci --preRelease=rc",
|
|
22
|
+
"rc:minor": "release-it minor --no-npm.publish --ci --preRelease=rc",
|
|
23
|
+
"rc:major": "release-it major --no-npm.publish --ci --preRelease=rc",
|
|
24
|
+
"changelog": "auto-changelog --template changelog-template.hbs -p -u --commit-limit false",
|
|
25
|
+
"changelog-debug": "auto-changelog --template changelog-template.hbs -p --template json --output changelog-data.json"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@goatlab/fluent": "^0.6.1"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@commitlint/cli": "^16.2.3",
|
|
32
|
+
"@commitlint/config-conventional": "^16.2.1",
|
|
33
|
+
"@commitlint/prompt-cli": "^16.2.3",
|
|
34
|
+
"@digitalroute/cz-conventional-changelog-for-jira": "^7.2.1",
|
|
35
|
+
"@types/jest": "^27.4.1",
|
|
36
|
+
"@types/node": "^17.0.23",
|
|
37
|
+
"auto-changelog": "^2.4.0",
|
|
38
|
+
"commitizen": "^4.2.4",
|
|
39
|
+
"cz-conventional-changelog": "^3.3.0",
|
|
40
|
+
"cz-jira-smart-commit": "^3.0.0",
|
|
41
|
+
"dotenv-cli": "^5.1.0",
|
|
42
|
+
"eslint": "^8.5.0",
|
|
43
|
+
"husky": "^7.0.4",
|
|
44
|
+
"jest": "^27.5.1",
|
|
45
|
+
"jest-environment-node": "^27.5.1",
|
|
46
|
+
"npm-pack-zip": "^1.3.0",
|
|
47
|
+
"prettier": "^2.6.1",
|
|
48
|
+
"pretty-quick": "^3.1.3",
|
|
49
|
+
"release-it": "^14.13.1",
|
|
50
|
+
"ts-jest": "^27.1.4",
|
|
51
|
+
"ts-node": "^10.7.0",
|
|
52
|
+
"turbo": "^1.1.10",
|
|
53
|
+
"typescript": "^4.6.3"
|
|
54
|
+
},
|
|
55
|
+
"keywords": [
|
|
56
|
+
"typescript",
|
|
57
|
+
"TS"
|
|
58
|
+
],
|
|
59
|
+
"author": "ignacio.cabrera@goatlab.io",
|
|
60
|
+
"license": "MIT",
|
|
61
|
+
"commitlint": {
|
|
62
|
+
"extends": [
|
|
63
|
+
"@commitlint/config-conventional"
|
|
64
|
+
],
|
|
65
|
+
"rules": {
|
|
66
|
+
"subject-case": [
|
|
67
|
+
2,
|
|
68
|
+
"never",
|
|
69
|
+
[]
|
|
70
|
+
]
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"husky": {
|
|
74
|
+
"hooks": {
|
|
75
|
+
"pre-commit": "pretty-quick --staged && npm test",
|
|
76
|
+
"commit-msg": "exec < /dev/tty && git cz --hook || true && commitlint -E HUSKY_GIT_PARAMS",
|
|
77
|
+
"pre-push": "npm run build"
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
"release-it": {
|
|
81
|
+
"src": {
|
|
82
|
+
"commitMessage": "ci: CI-1 [Release] v%s"
|
|
83
|
+
},
|
|
84
|
+
"git": {
|
|
85
|
+
"requireBranch": "master",
|
|
86
|
+
"commitArgs": [
|
|
87
|
+
"--no-verify"
|
|
88
|
+
]
|
|
89
|
+
},
|
|
90
|
+
"hooks": {
|
|
91
|
+
"before:init": [
|
|
92
|
+
"npm run build",
|
|
93
|
+
"npm run pack"
|
|
94
|
+
],
|
|
95
|
+
"after:bump": "npm run changelog",
|
|
96
|
+
"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
|
|
97
|
+
},
|
|
98
|
+
"github": {
|
|
99
|
+
"release": true,
|
|
100
|
+
"assets": [
|
|
101
|
+
"./*.zip"
|
|
102
|
+
]
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"auto-changelog": {
|
|
106
|
+
"commitLimit": false,
|
|
107
|
+
"unreleased": true,
|
|
108
|
+
"issueUrl": "https://goatlab.atlassian.net/browse/{id}",
|
|
109
|
+
"replaceText": {
|
|
110
|
+
"[Ff]eature:": "",
|
|
111
|
+
"[Ff]ix:": "",
|
|
112
|
+
"[Bb]reak:": "",
|
|
113
|
+
"([A-Z]+-\\d+)": "[$1](https://goatlab.atlassian.net/browse//$1) - "
|
|
114
|
+
},
|
|
115
|
+
"includeBranch": [
|
|
116
|
+
"master"
|
|
117
|
+
]
|
|
118
|
+
},
|
|
119
|
+
"config": {
|
|
120
|
+
"commitizen": {
|
|
121
|
+
"path": "./node_modules/@digitalroute/cz-conventional-changelog-for-jira"
|
|
122
|
+
},
|
|
123
|
+
"mongodbMemoryServer": {
|
|
124
|
+
"version": "latest"
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
"engines": {
|
|
128
|
+
"node": ">=14.16.0"
|
|
129
|
+
},
|
|
130
|
+
"description": "Readable query Interface & API generator for TS and Node",
|
|
131
|
+
"homepage": "https://docs.goatlab.io",
|
|
132
|
+
"main": "dist/index.js",
|
|
133
|
+
"types": "dist/index.d.ts",
|
|
134
|
+
"private": false,
|
|
135
|
+
"publishConfig": {
|
|
136
|
+
"access": "public"
|
|
137
|
+
},
|
|
138
|
+
"files": [
|
|
139
|
+
"./dist/**/*"
|
|
140
|
+
]
|
|
141
|
+
}
|