Skip to content

Commit

Permalink
Update bin strategy
Browse files Browse the repository at this point in the history
Remove the old cloki command and switch to explicit runtime definition for the qryn and qryn-bun commands.

Note this only works with npm, since bun doesn't seems to support global installation or binary alias commands as of yet.

Signed-off-by: Lorenzo Mangani <[email protected]>
  • Loading branch information
lmangani authored Oct 30, 2023
1 parent e5c44d9 commit 2abfdaf
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "qryn",
"version": "3.0.0",
"version": "3.0.1",
"description": "Polyglot Observability Stack with ClickHouse storage",
"main": "qryn.mjs",
"bin": {
"cloki": "./qryn.mjs",
"qryn": "./qryn.mjs"
"qryn": "node ./qryn.mjs",
"qryn-bun": "bun ./qryn.mjs"
},
"scripts": {
"test": "jest",
Expand All @@ -24,14 +24,14 @@
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/lmangani/qryn.git"
"url": "git+ssh://[email protected]/metrico/qryn.git"
},
"author": "[email protected]",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/lmangani/qryn/issues"
"url": "https://github.com/metrico/qryn/issues"
},
"homepage": "https://github.com/lmangani/qryn#readme",
"homepage": "https://github.com/metrico/qryn#readme",
"dependencies": {
"@apla/clickhouse": "^1.6.4",
"@cloki/clickhouse-sql": "1.2.10",
Expand Down Expand Up @@ -108,14 +108,14 @@
},
"keywords": [
"logs",
"logging",
"opentelemetry",
"logql",
"promql",
"grafana",
"grafana-loki",
"clickhouse",
"clickhouse-server",
"grep",
"tempoql",
"tempo",
"tail",
"prometheus"
]
Expand Down

0 comments on commit 2abfdaf

Please sign in to comment.