Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
"build": "tsdown",
"test": "vitest run src/ scripts/",
"typecheck": "tsc --build",
"lint": "biome check src/ scripts/"
"lint": "biome check src/ scripts/",
"lint-fix": "biome check --fix src/ scripts/"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
Expand Down
2 changes: 1 addition & 1 deletion src/core/session.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createHttpHooks, VM, type VMOptions } from "@earendil-works/gondolin";
import { createHttpHooks, VM } from "@earendil-works/gondolin";
import {
buildVfsMounts,
buildVfsVolumes,
Expand Down
2 changes: 2 additions & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env -S node --disable-warning=ExperimentalWarning
import { buildApplication, buildRouteMap, run } from "@stricli/core";
import packagejson from "../package.json" with { type: "json" };
import { command as init } from "./cli/init.ts";
import { command as run_ } from "./cli/run.ts";

Expand All @@ -10,6 +11,7 @@ const root = buildRouteMap({

const app = buildApplication(root, {
name: "tuor",
versionInfo: { currentVersion: packagejson.version },
scanner: {
caseStyle: "allow-kebab-for-camel",
allowArgumentEscapeSequence: true,
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.src.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"extends": "./tsconfig.base.json",
"include": ["src"]
"include": ["src", "./package.json"]
}