@soda-gql/swc-transformer 0.9.0 → 0.9.1

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soda-gql/swc-transformer",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "SWC-based native transformer for soda-gql",
5
5
  "type": "module",
6
6
  "private": false,
@@ -111,7 +111,7 @@ describe("swc-transformer", async () => {
111
111
  exclude: [],
112
112
  schemas: {
113
113
  default: {
114
- schema: "/tmp/schema.graphql",
114
+ schema: ["/tmp/schema.graphql"],
115
115
  inject: { scalars: "/tmp/scalars.ts" },
116
116
  defaultInputDepth: 3,
117
117
  inputDepthOverrides: {},
@@ -151,7 +151,7 @@ describe("swc-transformer", async () => {
151
151
  exclude: [],
152
152
  schemas: {
153
153
  default: {
154
- schema: "/tmp/schema.graphql",
154
+ schema: ["/tmp/schema.graphql"],
155
155
  inject: { scalars: "/tmp/scalars.ts" },
156
156
  defaultInputDepth: 3,
157
157
  inputDepthOverrides: {},
@@ -186,7 +186,7 @@ describe("swc-transformer", async () => {
186
186
  exclude: [],
187
187
  schemas: {
188
188
  default: {
189
- schema: "/tmp/schema.graphql",
189
+ schema: ["/tmp/schema.graphql"],
190
190
  inject: { scalars: "/tmp/scalars.ts" },
191
191
  defaultInputDepth: 3,
192
192
  inputDepthOverrides: {},