@ricsam/isolate-test-utils 0.1.1 → 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/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @ricsam/isolate-test-utils
2
2
 
3
+ ## 0.1.3
4
+
5
+ ### Patch Changes
6
+
7
+ - add playwright package
8
+ - Updated dependencies
9
+ - @ricsam/isolate-console@0.1.3
10
+ - @ricsam/isolate-core@0.1.3
11
+ - @ricsam/isolate-fetch@0.1.3
12
+ - @ricsam/isolate-fs@0.1.3
13
+ - @ricsam/isolate-runtime@0.1.3
14
+
15
+ ## 0.1.2
16
+
17
+ ### Patch Changes
18
+
19
+ - new build script
20
+ - Updated dependencies
21
+ - @ricsam/isolate-console@0.1.2
22
+ - @ricsam/isolate-core@0.1.2
23
+ - @ricsam/isolate-fetch@0.1.2
24
+ - @ricsam/isolate-fs@0.1.2
25
+ - @ricsam/isolate-runtime@0.1.2
26
+
3
27
  ## 0.1.1
4
28
 
5
29
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ricsam/isolate-test-utils",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -24,8 +24,7 @@
24
24
  "typecheck": "tsc --noEmit"
25
25
  },
26
26
  "dependencies": {
27
- "isolated-vm": "^6",
28
- "ts-morph": "^24.0.0"
27
+ "isolated-vm": "^6"
29
28
  },
30
29
  "devDependencies": {
31
30
  "@ricsam/isolate-fs": "*",
package/src/index.ts CHANGED
@@ -175,35 +175,3 @@ export type { FetchTestContext } from "./fetch-context.ts";
175
175
 
176
176
  // Re-export useful types
177
177
  export type { FileSystemHandler } from "@ricsam/isolate-fs";
178
-
179
- // ============================================================================
180
- // Type Checking Utilities
181
- // ============================================================================
182
-
183
- export {
184
- typecheckIsolateCode,
185
- formatTypecheckErrors,
186
- type TypecheckResult,
187
- type TypecheckError,
188
- type TypecheckOptions,
189
- type LibraryTypes,
190
- type LibraryTypeFile,
191
- } from "./typecheck.ts";
192
-
193
- // ============================================================================
194
- // Type Definitions
195
- // ============================================================================
196
-
197
- export {
198
- CORE_TYPES,
199
- CONSOLE_TYPES,
200
- CRYPTO_TYPES,
201
- ENCODING_TYPES,
202
- FETCH_TYPES,
203
- FS_TYPES,
204
- PATH_TYPES,
205
- TEST_ENV_TYPES,
206
- TIMERS_TYPES,
207
- TYPE_DEFINITIONS,
208
- type TypeDefinitionKey,
209
- } from "./isolate-types.ts";