mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-21 20:18:06 +02:00
Critical bug fixes and recall improvements (#68)
This commit is contained in:
parent
7d0e7320e2
commit
55247b7fcd
352 changed files with 60069 additions and 900 deletions
3
tests/fixtures/resolver/apps/web/src/foo.ts
vendored
Normal file
3
tests/fixtures/resolver/apps/web/src/foo.ts
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
export function foo() {
|
||||
return 1;
|
||||
}
|
||||
9
tests/fixtures/resolver/apps/web/src/index.ts
vendored
Normal file
9
tests/fixtures/resolver/apps/web/src/index.ts
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import { foo } from "./foo";
|
||||
import { baz } from "../bar/baz";
|
||||
import { util } from "@scope/util";
|
||||
import { x } from "@/lib/x";
|
||||
import { promises as fs } from "node:fs/promises";
|
||||
|
||||
export function main() {
|
||||
return foo() + baz() + util() + x();
|
||||
}
|
||||
3
tests/fixtures/resolver/apps/web/src/lib/x.ts
vendored
Normal file
3
tests/fixtures/resolver/apps/web/src/lib/x.ts
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
export function x() {
|
||||
return 4;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue