@elench/testkit 0.1.72 → 0.1.73

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.
@@ -29,7 +29,12 @@ const CONFIG_NEXT_TSCONFIG_ENTRY = path.join(
29
29
  "config-api",
30
30
  "next-runtime-tsconfig.mjs"
31
31
  );
32
+ const DRIZZLE_ENTRY = path.join(PACKAGE_ROOT, "lib", "drizzle", "index.mjs");
33
+ const ENV_ENTRY = path.join(PACKAGE_ROOT, "lib", "env", "index.mjs");
34
+ const PLAYWRIGHT_ENTRY = path.join(PACKAGE_ROOT, "lib", "playwright", "index.mjs");
32
35
  const RUNTIME_ENTRY = path.join(PACKAGE_ROOT, "lib", "runtime", "index.mjs");
36
+ const VITEST_ENTRY = path.join(PACKAGE_ROOT, "lib", "vitest", "index.mjs");
37
+ const DISCOVERY_ENTRY = path.join(PACKAGE_ROOT, "lib", "discovery", "index.mjs");
33
38
  const KNOWN_FAILURES_ENTRY = path.join(PACKAGE_ROOT, "lib", "known-failures", "index.mjs");
34
39
  const MODULE_RUNNER_ENTRY = path.join(
35
40
  PACKAGE_ROOT,
@@ -252,7 +257,12 @@ function resolvePackageSubpath(specifier) {
252
257
  if (!subpath) return ROOT_ENTRY;
253
258
  if (subpath === "/config") return CONFIG_ENTRY;
254
259
  if (subpath === "/config/next-runtime-tsconfig") return CONFIG_NEXT_TSCONFIG_ENTRY;
260
+ if (subpath === "/drizzle") return DRIZZLE_ENTRY;
261
+ if (subpath === "/env") return ENV_ENTRY;
262
+ if (subpath === "/playwright") return PLAYWRIGHT_ENTRY;
255
263
  if (subpath === "/runtime") return RUNTIME_ENTRY;
264
+ if (subpath === "/vitest") return VITEST_ENTRY;
265
+ if (subpath === "/discovery") return DISCOVERY_ENTRY;
256
266
  if (subpath === "/known-failures") return KNOWN_FAILURES_ENTRY;
257
267
 
258
268
  throw new Error(`Unsupported @elench/testkit import "${specifier}" while loading template step`);
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elench/next-analysis",
3
- "version": "0.1.72",
3
+ "version": "0.1.73",
4
4
  "description": "SWC-backed Next.js source analysis primitives for Erench tools",
5
5
  "type": "module",
6
6
  "exports": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elench/testkit-bridge",
3
- "version": "0.1.72",
3
+ "version": "0.1.73",
4
4
  "description": "Browser bridge helpers for testkit",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -22,7 +22,7 @@
22
22
  "typecheck": "tsc -p tsconfig.json --noEmit"
23
23
  },
24
24
  "dependencies": {
25
- "@elench/testkit-protocol": "0.1.72"
25
+ "@elench/testkit-protocol": "0.1.73"
26
26
  },
27
27
  "private": false
28
28
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elench/testkit-protocol",
3
- "version": "0.1.72",
3
+ "version": "0.1.73",
4
4
  "description": "Shared browser protocol for testkit bridge and extension consumers",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elench/ts-analysis",
3
- "version": "0.1.72",
3
+ "version": "0.1.73",
4
4
  "description": "TypeScript compiler-backed source analysis primitives for Erench tools",
5
5
  "type": "module",
6
6
  "exports": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elench/testkit",
3
- "version": "0.1.72",
3
+ "version": "0.1.73",
4
4
  "description": "CLI for discovering and running local HTTP, DAL, and Playwright test suites",
5
5
  "type": "module",
6
6
  "workspaces": [
@@ -80,10 +80,10 @@
80
80
  "vitest": "^3.2.4"
81
81
  },
82
82
  "dependencies": {
83
- "@elench/next-analysis": "0.1.72",
84
- "@elench/ts-analysis": "0.1.72",
85
- "@elench/testkit-bridge": "0.1.72",
86
- "@elench/testkit-protocol": "0.1.72",
83
+ "@elench/next-analysis": "0.1.73",
84
+ "@elench/ts-analysis": "0.1.73",
85
+ "@elench/testkit-bridge": "0.1.73",
86
+ "@elench/testkit-protocol": "0.1.73",
87
87
  "@babel/code-frame": "^7.29.0",
88
88
  "@oclif/core": "^4.10.6",
89
89
  "esbuild": "^0.25.11",