@cubejs-backend/questdb-driver 1.7.36 → 1.7.38

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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +18 -14
package/README.md CHANGED
@@ -1,11 +1,11 @@
1
- <p align="center"><a href="https://cube.dev"><img src="https://i.imgur.com/zYHXm4o.png" alt="Cube.js" width="300px"></a></p>
1
+ <p align="center"><a href="https://cube.dev"><img src="https://i.imgur.com/zYHXm4o.png" alt="Cube" width="300px"></a></p>
2
2
 
3
3
  [Website](https://cube.dev) • [Docs](https://docs.cube.dev) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/the_cube_dev)
4
4
 
5
5
  [![npm version](https://badge.fury.io/js/%40cubejs-backend%2Fserver.svg)](https://badge.fury.io/js/%40cubejs-backend%2Fserver)
6
6
  [![GitHub Actions](https://github.com/cube-js/cube.js/workflows/Build/badge.svg)](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)
7
7
 
8
- # Cube.js QuestDB Database Driver
8
+ # Cube QuestDB Database Driver
9
9
 
10
10
  Pure JavaScript QuestDB driver. Based on pg driver for PostgreSQL.
11
11
 
@@ -13,8 +13,8 @@ Pure JavaScript QuestDB driver. Based on pg driver for PostgreSQL.
13
13
 
14
14
  This driver has been contributed by [Andrei Pechkurov](https://github.com/puzpuzpuz). This package is **community supported** and should be used at your own risk.
15
15
 
16
- While the Cube Dev team is happy to review and accept future community contributions, we don't have active plans for further development. This includes bug fixes unless they affect different parts of Cube.js. **We're looking for maintainers for this package.** If you'd like to become a maintainer, please contact us in Cube.js Slack.
16
+ While the Cube Dev team is happy to review and accept future community contributions, we don't have active plans for further development. This includes bug fixes unless they affect different parts of Cube. **We're looking for maintainers for this package.** If you'd like to become a maintainer, please contact us in Cube Slack.
17
17
 
18
18
  ## License
19
19
 
20
- Cube.js QuestDB driver is [Apache 2.0 licensed](./LICENSE).
20
+ Cube QuestDB driver is [Apache 2.0 licensed](./LICENSE).
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@cubejs-backend/questdb-driver",
3
- "description": "Cube.js QuestDB database driver",
3
+ "description": "Cube QuestDB database driver",
4
4
  "author": "Cube Dev, Inc.",
5
- "version": "1.7.36",
5
+ "version": "1.7.38",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/cube-js/cube.git",
@@ -16,20 +16,27 @@
16
16
  "index.js"
17
17
  ],
18
18
  "main": "index.js",
19
+ "exports": {
20
+ ".": {
21
+ "types": "./dist/src/index.d.ts",
22
+ "import": "./dist/src/index.js",
23
+ "require": "./index.js"
24
+ },
25
+ "./dist/*": "./dist/*",
26
+ "./package.json": "./package.json"
27
+ },
19
28
  "typings": "dist/src/index.d.ts",
20
29
  "scripts": {
21
30
  "build": "rm -rf dist && npm run tsc",
22
31
  "tsc": "tsc",
23
32
  "watch": "tsc -w",
24
33
  "integration": "npm run integration:questdb",
25
- "integration:questdb": "jest --verbose dist/test",
26
- "lint": "eslint src/* --ext .ts",
27
- "lint:fix": "eslint --fix src/* --ext .ts"
34
+ "integration:questdb": "jest --verbose dist/test"
28
35
  },
29
36
  "dependencies": {
30
- "@cubejs-backend/base-driver": "1.7.36",
31
- "@cubejs-backend/schema-compiler": "1.7.36",
32
- "@cubejs-backend/shared": "1.7.36",
37
+ "@cubejs-backend/base-driver": "1.7.38",
38
+ "@cubejs-backend/schema-compiler": "1.7.38",
39
+ "@cubejs-backend/shared": "1.7.38",
33
40
  "@types/pg": "^8.16.0",
34
41
  "moment": "^2.30.1",
35
42
  "pg": "^8.18.0",
@@ -37,8 +44,8 @@
37
44
  },
38
45
  "license": "Apache-2.0",
39
46
  "devDependencies": {
40
- "@cubejs-backend/linter": "1.7.36",
41
- "@cubejs-backend/testing-shared": "1.7.36",
47
+ "@cubejs-backend/linter": "1.7.38",
48
+ "@cubejs-backend/testing-shared": "1.7.38",
42
49
  "@types/jest": "^29",
43
50
  "@types/node": "^22",
44
51
  "testcontainers": "^10.28.0",
@@ -50,8 +57,5 @@
50
57
  "jest": {
51
58
  "testEnvironment": "node"
52
59
  },
53
- "eslintConfig": {
54
- "extends": "../cubejs-linter"
55
- },
56
- "gitHead": "0e1c035e2b48a6b44cfd1f10d5c6e94b4bba76d6"
60
+ "gitHead": "9ea1fda5dade5b8a4256acd20bcf77318fe13a72"
57
61
  }