@m1212e/rumble 0.16.27 → 0.16.28

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.
@@ -20,7 +20,7 @@ function lazy(initializer) {
20
20
  return value;
21
21
  };
22
22
  }
23
-
24
23
  //#endregion
25
24
  export { lazy as t };
26
- //# sourceMappingURL=lazy-CoMVcY4X.mjs.map
25
+
26
+ //# sourceMappingURL=lazy-BgeBy3-B.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"lazy-CoMVcY4X.mjs","names":[],"sources":["../lib/helpers/lazy.ts"],"sourcesContent":["/**\n * Creates a lazily initialized function.\n *\n * The returned function will call the initializer function on its first call and\n * store the result. On subsequent calls, it will return the stored result.\n *\n * @param initializer The function to be called for initialization.\n * @returns A function that calls the initializer function on its first call and\n * returns the stored result on subsequent calls.\n */\nexport function lazy<T>(initializer: () => T): () => T {\n let value: T | undefined;\n let initialized = false;\n\n return () => {\n if (!initialized) {\n value = initializer();\n initialized = true;\n }\n return value!;\n };\n}\n"],"mappings":";;;;;;;;;;;AAUA,SAAgB,KAAQ,aAA+B;CACrD,IAAI;CACJ,IAAI,cAAc;AAElB,cAAa;AACX,MAAI,CAAC,aAAa;AAChB,WAAQ,aAAa;AACrB,iBAAc;;AAEhB,SAAO"}
1
+ {"version":3,"file":"lazy-BgeBy3-B.mjs","names":[],"sources":["../lib/helpers/lazy.ts"],"sourcesContent":["/**\n * Creates a lazily initialized function.\n *\n * The returned function will call the initializer function on its first call and\n * store the result. On subsequent calls, it will return the stored result.\n *\n * @param initializer The function to be called for initialization.\n * @returns A function that calls the initializer function on its first call and\n * returns the stored result on subsequent calls.\n */\nexport function lazy<T>(initializer: () => T): () => T {\n let value: T | undefined;\n let initialized = false;\n\n return () => {\n if (!initialized) {\n value = initializer();\n initialized = true;\n }\n return value!;\n };\n}\n"],"mappings":";;;;;;;;;;;AAUA,SAAgB,KAAQ,aAA+B;CACrD,IAAI;CACJ,IAAI,cAAc;AAElB,cAAa;AACX,MAAI,CAAC,aAAa;AAChB,WAAQ,aAAa;AACrB,iBAAc;;AAEhB,SAAO"}
@@ -1,4 +1,3 @@
1
-
2
1
  //#region lib/helpers/lazy.ts
3
2
  /**
4
3
  * Creates a lazily initialized function.
@@ -21,12 +20,12 @@ function lazy(initializer) {
21
20
  return value;
22
21
  };
23
22
  }
24
-
25
23
  //#endregion
26
- Object.defineProperty(exports, 'lazy', {
27
- enumerable: true,
28
- get: function () {
29
- return lazy;
30
- }
24
+ Object.defineProperty(exports, "lazy", {
25
+ enumerable: true,
26
+ get: function() {
27
+ return lazy;
28
+ }
31
29
  });
32
- //# sourceMappingURL=lazy-BrDkNRyV.cjs.map
30
+
31
+ //# sourceMappingURL=lazy-DT--QoPa.cjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"lazy-BrDkNRyV.cjs","names":[],"sources":["../lib/helpers/lazy.ts"],"sourcesContent":["/**\n * Creates a lazily initialized function.\n *\n * The returned function will call the initializer function on its first call and\n * store the result. On subsequent calls, it will return the stored result.\n *\n * @param initializer The function to be called for initialization.\n * @returns A function that calls the initializer function on its first call and\n * returns the stored result on subsequent calls.\n */\nexport function lazy<T>(initializer: () => T): () => T {\n let value: T | undefined;\n let initialized = false;\n\n return () => {\n if (!initialized) {\n value = initializer();\n initialized = true;\n }\n return value!;\n };\n}\n"],"mappings":";;;;;;;;;;;;AAUA,SAAgB,KAAQ,aAA+B;CACrD,IAAI;CACJ,IAAI,cAAc;AAElB,cAAa;AACX,MAAI,CAAC,aAAa;AAChB,WAAQ,aAAa;AACrB,iBAAc;;AAEhB,SAAO"}
1
+ {"version":3,"file":"lazy-DT--QoPa.cjs","names":[],"sources":["../lib/helpers/lazy.ts"],"sourcesContent":["/**\n * Creates a lazily initialized function.\n *\n * The returned function will call the initializer function on its first call and\n * store the result. On subsequent calls, it will return the stored result.\n *\n * @param initializer The function to be called for initialization.\n * @returns A function that calls the initializer function on its first call and\n * returns the stored result on subsequent calls.\n */\nexport function lazy<T>(initializer: () => T): () => T {\n let value: T | undefined;\n let initialized = false;\n\n return () => {\n if (!initialized) {\n value = initializer();\n initialized = true;\n }\n return value!;\n };\n}\n"],"mappings":";;;;;;;;;;;AAUA,SAAgB,KAAQ,aAA+B;CACrD,IAAI;CACJ,IAAI,cAAc;AAElB,cAAa;AACX,MAAI,CAAC,aAAa;AAChB,WAAQ,aAAa;AACrB,iBAAc;;AAEhB,SAAO"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@m1212e/rumble",
3
3
  "module": "./out/index.mjs",
4
- "version": "0.16.27",
4
+ "version": "0.16.28",
5
5
  "type": "module",
6
6
  "repository": "https://github.com/m1212e/rumble",
7
7
  "engines": {
@@ -18,27 +18,27 @@
18
18
  "typecheck": "tsc --noEmit"
19
19
  },
20
20
  "devDependencies": {
21
- "@biomejs/biome": "^2.3.14",
21
+ "@biomejs/biome": "^2.4.5",
22
22
  "@graphql-tools/executor-http": "^3.1.0",
23
23
  "@types/bun": "latest",
24
- "@types/pg": "^8.16.0",
24
+ "@types/pg": "^8.18.0",
25
25
  "@types/pluralize": "^0.0.33",
26
- "drizzle-kit": "^1.0.0-beta.15-859cf75",
27
- "drizzle-orm": "^1.0.0-beta.15-859cf75",
28
- "drizzle-seed": "^1.0.0-beta.15-859cf75",
29
- "lefthook": "^2.1.0",
30
- "pg": "^8.18.0",
31
- "tsdown": "^0.20.3"
26
+ "drizzle-kit": "^1.0.0-beta.9-e89174b",
27
+ "drizzle-orm": "^1.0.0-beta.9-e89174b",
28
+ "drizzle-seed": "^1.0.0-beta.9-e89174b",
29
+ "lefthook": "^2.1.2",
30
+ "pg": "^8.20.0",
31
+ "tsdown": "^0.21.0"
32
32
  },
33
33
  "peerDependencies": {
34
- "typescript": "^5",
34
+ "typescript": "^5.9.3",
35
35
  "drizzle-orm": "^1"
36
36
  },
37
37
  "dependencies": {
38
38
  "@escape.tech/graphql-armor": "^3.2.0",
39
39
  "@graphql-yoga/plugin-disable-introspection": "^2.19.0",
40
40
  "@opentelemetry/api": "^1.9.0",
41
- "@opentelemetry/semantic-conventions": "^1.39.0",
41
+ "@opentelemetry/semantic-conventions": "^1.40.0",
42
42
  "@pothos/core": "^4.12.0",
43
43
  "@pothos/plugin-drizzle": "^0.17.0",
44
44
  "@pothos/plugin-smart-subscriptions": "^4.1.4",
@@ -47,14 +47,14 @@
47
47
  "@urql/core": "^6.0.1",
48
48
  "@urql/exchange-graphcache": "^9.0.0",
49
49
  "@urql/introspection": "^1.2.1",
50
- "devalue": "^5.6.2",
51
- "es-toolkit": "^1.44.0",
52
- "graphql": "^16.12.0",
50
+ "devalue": "^5.6.3",
51
+ "es-toolkit": "^1.45.1",
52
+ "graphql": "^16.13.1",
53
53
  "graphql-scalars": "^1.25.0",
54
54
  "graphql-yoga": "^5.18.0",
55
55
  "pluralize": "^8.0.0",
56
- "sofa-api": "^0.18.8",
57
- "svelte": "^5.50.0",
56
+ "sofa-api": "^0.18.9",
57
+ "svelte": "^5.53.7",
58
58
  "wonka": "^6.3.5"
59
59
  },
60
60
  "main": "./out/index.cjs",
@@ -73,5 +73,14 @@
73
73
  "require": "./out/client/generate.cjs"
74
74
  },
75
75
  "./package.json": "./package.json"
76
+ },
77
+ "inlinedDependencies": {
78
+ "hotscript": "1.0.13",
79
+ "ts-algebra": "2.0.0",
80
+ "json-schema-to-ts": "3.1.1",
81
+ "@whatwg-node/fetch": "0.10.8",
82
+ "@whatwg-node/promise-helpers": "1.3.2",
83
+ "@whatwg-node/server": "0.10.10",
84
+ "fets": "0.8.5"
76
85
  }
77
86
  }