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 @@ -29,7 +29,8 @@
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
"!dist/**/*.spec.*",
"!dist/testing"
],
"sideEffects": [
"**/*.css"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts">
import { getLinkContext, type ILinkContext } from "../lib/LinkContext/LinkContext.svelte";
import { getLinkContext, type ILinkContext } from "$lib/LinkContext/LinkContext.svelte";

interface Props {
linkCtx?: ILinkContext;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts">
import LinkContext, { type ILinkContext } from "../lib/LinkContext/LinkContext.svelte";
import LinkContext, { type ILinkContext } from "$lib/LinkContext/LinkContext.svelte";
import LinkContextSpy from "./LinkContextSpy.svelte";

interface Props extends ILinkContext {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts">
import Router from "../lib/Router/Router.svelte";
import Route from "../lib/Route/Route.svelte";
import Router from "$lib/Router/Router.svelte";
import Route from "$lib/Route/Route.svelte";
import type { Snippet } from "svelte";

interface Props {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Hash, RouteInfo, RoutingOptions } from "$lib/types.js";
import { RouterEngine } from "$lib/kernel/RouterEngine.svelte.js";
import { getRouterContextKey } from "../lib/Router/Router.svelte";
import { getRouterContextKey } from "$lib/Router/Router.svelte";
import { createRawSnippet } from "svelte";
import { resolveHashValue } from "$lib/kernel/resolveHashValue.js";
import { vi } from "vitest";
Expand Down
2 changes: 1 addition & 1 deletion svelte.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const config = {
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
adapter: adapter(),
alias: {
$test: 'src/testing'
$test: 'src/lib/testing'
}
}
};
Expand Down