fix(cli): bundle current WRN typechecker
Quality / quality (ubuntu-latest) (push) Failing after 9m50s
Quality / quality (windows-latest) (push) Canceled after 0s

This commit is contained in:
2026-08-12 22:11:32 +05:30
parent 082da38f67
commit e638c6be6a
3 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -268,7 +268,7 @@
},
"packages/cli": {
"name": "@wrnexus/cli",
"version": "0.8.29",
"version": "0.8.30",
"bin": {
"wrnexus": "src/index.ts",
},
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@wrnexus/cli",
"version": "0.8.29",
"version": "0.8.30",
"type": "module",
"main": "src/index.ts",
"exports": {
+2
View File
@@ -1,6 +1,8 @@
import { existsSync, mkdirSync, readFileSync, readdirSync, writeFileSync } from "node:fs";
import { basename, extname, join, relative, resolve } from "node:path";
import { buildRouter, createRouteManifest, nameRoutes } from "@wrnexus/router";
// Keep the CLI checker sourced from the package contract so typecheck fixes are
// included in each published CLI bundle.
import { checkWrnFile, type WrnTypeDiagnostic } from "@wrnexus/typecheck";
import { parse } from "@wrnexus/syntax";
import { generate, generateTargets } from "@wrnexus/compiler";