drizzle-cube 0.1.17 → 0.1.19
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/dist/adapters/{compiler-Dec55JjO.js → compiler-CPsEzFP2.js} +702 -703
- package/dist/adapters/express/index.d.ts +7 -7
- package/dist/adapters/express/index.js +1 -1
- package/dist/adapters/fastify/index.d.ts +6 -6
- package/dist/adapters/fastify/index.js +1 -1
- package/dist/adapters/hono/index.d.ts +7 -7
- package/dist/adapters/hono/index.js +1 -1
- package/dist/adapters/nextjs/index.d.ts +9 -9
- package/dist/adapters/nextjs/index.js +1 -1
- package/dist/adapters/utils.d.ts +3 -3
- package/dist/client/styles.css +1 -1
- package/dist/server/index.d.ts +177 -246
- package/dist/server/index.js +613 -621
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "drizzle-cube",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.19",
|
|
4
4
|
"description": "Drizzle ORM-first semantic layer with Cube.js compatibility. Type-safe analytics and dashboards with SQL injection protection.",
|
|
5
5
|
"main": "./dist/server/index.js",
|
|
6
6
|
"types": "./dist/server/index.d.ts",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"typecheck": "tsc --noEmit",
|
|
81
81
|
"lint": "eslint src/**/*.ts",
|
|
82
82
|
"lint:fix": "eslint src/**/*.ts --fix",
|
|
83
|
-
"prepublishOnly": "npm run
|
|
83
|
+
"prepublishOnly": "npm run lint && npm run typecheck && npm run build && npm run test",
|
|
84
84
|
"dev:db:up": "cd dev && docker-compose up -d",
|
|
85
85
|
"dev:db:down": "cd dev && docker-compose down",
|
|
86
86
|
"dev:db:migrate": "cd dev && tsx scripts/migrate.ts",
|