@glubean/sdk 0.1.0 → 0.1.3

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/expect.d.ts CHANGED
@@ -205,7 +205,7 @@ export declare class Expectation<T> {
205
205
  * extra arguments, and returns a `MatcherResult`. The SDK automatically
206
206
  * handles `.not` negation and `.orFail()` chaining.
207
207
  *
208
- * **Isolation**: Each test file runs in its own Deno subprocess, so
208
+ * **Isolation**: Each test file runs in its own subprocess, so
209
209
  * prototype mutations from `Expectation.extend()` do not leak between files.
210
210
  *
211
211
  * **Type safety**: To get full TypeScript support for custom matchers,
package/dist/expect.js CHANGED
@@ -281,7 +281,7 @@ export class Expectation {
281
281
  * extra arguments, and returns a `MatcherResult`. The SDK automatically
282
282
  * handles `.not` negation and `.orFail()` chaining.
283
283
  *
284
- * **Isolation**: Each test file runs in its own Deno subprocess, so
284
+ * **Isolation**: Each test file runs in its own subprocess, so
285
285
  * prototype mutations from `Expectation.extend()` do not leak between files.
286
286
  *
287
287
  * **Type safety**: To get full TypeScript support for custom matchers,
package/dist/types.d.ts CHANGED
@@ -642,7 +642,7 @@ export interface TestContext {
642
642
  readonly retryCount: number;
643
643
  /**
644
644
  * Get current memory usage statistics.
645
- * Only available in Deno runtime (returns null in other environments).
645
+ * Returns null if not available in the current runtime.
646
646
  * Useful for debugging memory issues and profiling tests locally.
647
647
  *
648
648
  * @returns Memory usage stats or null if not available
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glubean/sdk",
3
- "version": "0.1.0",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -27,14 +27,14 @@
27
27
  "files": [
28
28
  "dist"
29
29
  ],
30
- "scripts": {
31
- "build": "tsc -p tsconfig.build.json",
32
- "test": "vitest run"
33
- },
34
30
  "dependencies": {
35
31
  "yaml": "^2.7.0"
36
32
  },
37
33
  "devDependencies": {
38
34
  "@types/node": "^22.0.0"
35
+ },
36
+ "scripts": {
37
+ "build": "tsc -p tsconfig.build.json",
38
+ "test": "vitest run"
39
39
  }
40
- }
40
+ }