drizzle-graphql-plus 0.8.13 → 0.8.14
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/index.cjs +51 -27
- package/index.cjs.map +1 -1
- package/index.js +51 -27
- package/index.js.map +1 -1
- package/package.json +4 -1
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "drizzle-graphql-plus",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"author": "alcala.rao@gmail.com (Roy Alcala)",
|
|
5
|
-
"version": "0.8.
|
|
5
|
+
"version": "0.8.14",
|
|
6
6
|
"description": "Automatically generate GraphQL schema or customizable schema config fields from Drizzle ORM schema",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"build": "pnpm tsx scripts/build.ts",
|
|
@@ -11,6 +11,9 @@
|
|
|
11
11
|
"publish": "npm publish package.tgz --access public --no-provenance",
|
|
12
12
|
"build:pack:publish": "pnpm build && (cd dist && npm pack --pack-destination ..) && mv drizzle-graphql-plus-*.tgz package.tgz && npm publish package.tgz --access public --no-provenance",
|
|
13
13
|
"test": "vitest run",
|
|
14
|
+
"test-server:seed": "tsx test-server/seed.ts",
|
|
15
|
+
"test-server:start": "tsx test-server/server.ts",
|
|
16
|
+
"test-server": "pnpm test-server:seed && pnpm test-server:start",
|
|
14
17
|
"server-test:pg": "DB_TYPE=pg tsx watch server/server.ts",
|
|
15
18
|
"server-test:mysql": "DB_TYPE=mysql tsx watch server/server.ts",
|
|
16
19
|
"server-test:sqlite": "DB_TYPE=sqlite tsx watch server/server.ts",
|