@vrplatform/graphql 1.1.1 → 1.1.2

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/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "!**/*.spec.*",
11
11
  "LICENSE"
12
12
  ],
13
- "version": "1.1.1",
13
+ "version": "1.1.2",
14
14
  "description": "Finalytic graphql",
15
15
  "main": "build/main/index.js",
16
16
  "module": "build/module/index.js",
@@ -32,14 +32,14 @@
32
32
  "test": "bun test",
33
33
  "lint": "biome check .",
34
34
  "pub": "bun pub:pre && pnpm version patch --no-commit-hooks --no-git-tag-version && pnpm publish --no-git-checks",
35
- "pub:pre": "bun check && npm run generate && npm run build",
35
+ "pub:pre": "bun check && bun generate && bun run build",
36
36
  "typecheck": "tsc --noEmit",
37
37
  "build": "run-p build:* && run-p buildcp:*",
38
38
  "build:main": "tsc -b tsconfig.main.json",
39
39
  "build:module": "tsc -b tsconfig.esm.json",
40
40
  "buildcp:copy1": "cp ./src/gqty/schema.generated.d.ts ./build/module/gqty/schema.generated.d.ts",
41
41
  "buildcp:copy2": "cp ./src/gqty/schema.generated.d.ts ./build/main/gqty/schema.generated.d.ts",
42
- "generate": "gqty generate && sleep 1 && npm run post-generate && rm src/gqty/index.js",
42
+ "generate": "gqty generate && sleep 1 && bun post-generate && rm src/gqty/index.js",
43
43
  "post-generate": "run-s post-generate:*",
44
44
  "post-generate:1": "sed -i '' 's/export type Maybe<T> = T | null/export type Maybe<T> = T/g' ./src/gqty/schema.generated.d.ts",
45
45
  "post-generate:2": "sed -i '' 's/InputMaybe<T> = Maybe<T>/InputMaybe<T> = T | null/g' ./src/gqty/schema.generated.d.ts",