Skip to content

Commit 7960123

Browse files
committed
[misc] Fix
1 parent 28964b1 commit 7960123

2 files changed

Lines changed: 12 additions & 13 deletions

File tree

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ test-typescript-r4-example: typecheck format lint
5151
test-mustache-java-r4-example: typecheck format lint
5252
bun run examples/mustache-java-r4/mustache-java-r4-gen.ts
5353
$(TYPECHECK) --project tsconfig.examples-mustache-java-r4.json
54-
cd examples/mustache-java-r4 && bun run demo.ts > /dev/null
5554

5655
test-typescript-ccda-example: typecheck format lint
5756
$(TEST) test/unit/typeschema/transformer/ccda.test.ts

src/api/writer-generator/mustache.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@ import {
88
type NameTransformation,
99
} from "../mustache/generator/NameGenerator";
1010
import { Writer, type WriterOptions } from "./writer";
11-
import type { PrimitiveType } from "../mustache/types/PrimitiveType";
12-
import type { FilterType } from "../mustache/types/FilterType";
13-
import type { HookType } from "../mustache/types/HookType";
14-
import type { Rendering } from "../mustache/types/Rendering";
11+
import type { PrimitiveType } from "@mustache/types/PrimitiveType";
12+
import type { FilterType } from "@mustache/types/FilterType";
13+
import type { HookType } from "@mustache/types/HookType";
14+
import type { Rendering } from "@mustache/types/Rendering";
1515
import * as fs from "node:fs";
1616
import * as Path from "node:path";
17-
import { TemplateFileCache } from "../mustache/generator/TemplateFileCache";
18-
import { LambdaMixinProvider } from "../mustache/generator/LambdaMixinProvider";
19-
import { DebugMixinProvider } from "../mustache/generator/DebugMixinProvider";
20-
import type { ViewModelCache } from "../mustache/generator/ViewModelFactory";
21-
import type { TypeViewModel } from "../mustache/types/TypeViewModel";
22-
import type { NamedViewModel } from "../mustache/types/NamedViewModel";
23-
import type { ViewModel } from "../mustache/types/ViewModel";
17+
import { TemplateFileCache } from "@mustache/generator/TemplateFileCache";
18+
import { LambdaMixinProvider } from "@mustache/generator/LambdaMixinProvider";
19+
import { DebugMixinProvider } from "@mustache/generator/DebugMixinProvider";
20+
import type { ViewModelCache } from "@mustache/generator/ViewModelFactory";
21+
import type { TypeViewModel } from "@mustache/types/TypeViewModel";
22+
import type { NamedViewModel } from "@mustache/types/NamedViewModel";
23+
import type { ViewModel } from "@mustache/types/ViewModel";
2424
import * as util from "node:util";
25-
import type { View } from "../mustache/types/View";
25+
import type { View } from "@mustache/types/View";
2626
import { default as Mustache } from "mustache";
2727

2828
export interface MustacheGeneratorOptions extends WriterOptions {

0 commit comments

Comments
 (0)