Skip to content

Commit

Permalink
chore: minor cleanups (denoland#2393)
Browse files Browse the repository at this point in the history
These changes occur by just running `deno task ok` on `main`.
  • Loading branch information
iuioiua authored Apr 8, 2024
1 parent c9ec6bb commit 425032a
Show file tree
Hide file tree
Showing 15 changed files with 14 additions and 15 deletions.
1 change: 0 additions & 1 deletion src/server/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,6 @@ export interface RouteConfig {
skipAppWrapper?: boolean;
}

// deno-lint-ignore no-empty-interface
export interface RenderOptions extends ResponseInit {}

export type ServeHandlerInfo = {
Expand Down
2 changes: 1 addition & 1 deletion tests/fixture_base_path/fresh.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import * as $html from "./routes/html.tsx";
import * as $index from "./routes/index.tsx";
import * as $islands from "./routes/islands.tsx";
import * as $Counter from "./islands/Counter.tsx";
import { type Manifest } from "$fresh/server.ts";
import type { Manifest } from "$fresh/server.ts";

const manifest = {
routes: {
Expand Down
2 changes: 1 addition & 1 deletion tests/fixture_base_path_build/fresh.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import * as $_app from "./routes/_app.tsx";
import * as $index from "./routes/index.tsx";

import { type Manifest } from "$fresh/server.ts";
import type { Manifest } from "$fresh/server.ts";

const manifest = {
routes: {
Expand Down
2 changes: 1 addition & 1 deletion tests/fixture_build/fresh.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import * as $index from "./routes/index.tsx";
import * as $Counter from "./islands/Counter.tsx";
import { type Manifest } from "$fresh/server.ts";
import type { Manifest } from "$fresh/server.ts";

const manifest = {
routes: {
Expand Down
2 changes: 1 addition & 1 deletion tests/fixture_build_out_dir/fresh.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import * as $index from "./routes/index.tsx";
import * as $Counter from "./islands/Counter.tsx";
import { type Manifest } from "$fresh/server.ts";
import type { Manifest } from "$fresh/server.ts";

const manifest = {
routes: {
Expand Down
2 changes: 1 addition & 1 deletion tests/fixture_build_out_dir_sub/src/fresh.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import * as $index from "./routes/index.tsx";
import * as $Counter from "./islands/Counter.tsx";
import { type Manifest } from "$fresh/server.ts";
import type { Manifest } from "$fresh/server.ts";

const manifest = {
routes: {
Expand Down
2 changes: 1 addition & 1 deletion tests/fixture_build_out_dir_sub2/src/fresh.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import * as $index from "./routes/index.tsx";
import * as $Counter from "./islands/Counter.tsx";
import { type Manifest } from "$fresh/server.ts";
import type { Manifest } from "$fresh/server.ts";

const manifest = {
routes: {
Expand Down
2 changes: 1 addition & 1 deletion tests/fixture_build_sub_dir/src/fresh.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import * as $index from "./routes/index.tsx";
import * as $Counter from "./islands/Counter.tsx";
import { type Manifest } from "$fresh/server.ts";
import type { Manifest } from "$fresh/server.ts";

const manifest = {
routes: {
Expand Down
2 changes: 1 addition & 1 deletion tests/fixture_build_target/fresh.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import * as $index from "./routes/index.tsx";
import * as $Counter from "./islands/Counter.tsx";
import { type Manifest } from "$fresh/server.ts";
import type { Manifest } from "$fresh/server.ts";

const manifest = {
routes: {
Expand Down
2 changes: 1 addition & 1 deletion tests/fixture_config/fresh.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import * as $index from "./routes/index.tsx";

import { type Manifest } from "$fresh/server.ts";
import type { Manifest } from "$fresh/server.ts";

const manifest = {
routes: {
Expand Down
2 changes: 1 addition & 1 deletion tests/fixture_islands_multiple/fresh.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import * as $index from "./routes/index.tsx";
import * as $Multiple from "./islands/Multiple.tsx";
import * as $MultipleDefault from "./islands/MultipleDefault.tsx";
import * as $Single from "./islands/Single.tsx";
import { type Manifest } from "$fresh/server.ts";
import type { Manifest } from "$fresh/server.ts";

const manifest = {
routes: {
Expand Down
2 changes: 1 addition & 1 deletion tests/fixture_plugin_lifecycle/fresh.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import * as $index from "./routes/index.tsx";

import { type Manifest } from "$fresh/server.ts";
import type { Manifest } from "$fresh/server.ts";

const manifest = {
routes: {
Expand Down
2 changes: 1 addition & 1 deletion tests/fixture_tailwind_build/fresh.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import * as $_app from "./routes/_app.tsx";
import * as $index from "./routes/index.tsx";

import { type Manifest } from "$fresh/server.ts";
import type { Manifest } from "$fresh/server.ts";

const manifest = {
routes: {
Expand Down
2 changes: 1 addition & 1 deletion tests/fixture_tailwind_build_2/fresh.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import * as $_app from "./routes/_app.tsx";
import * as $index from "./routes/index.tsx";

import { type Manifest } from "$fresh/server.ts";
import type { Manifest } from "$fresh/server.ts";

const manifest = {
routes: {
Expand Down
2 changes: 1 addition & 1 deletion www/fresh.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import * as $LemonDrop from "./islands/LemonDrop.tsx";
import * as $SearchButton from "./islands/SearchButton.tsx";
import * as $TableOfContents from "./islands/TableOfContents.tsx";
import * as $VersionSelect from "./islands/VersionSelect.tsx";
import { type Manifest } from "$fresh/server.ts";
import type { Manifest } from "$fresh/server.ts";

const manifest = {
routes: {
Expand Down

0 comments on commit 425032a

Please sign in to comment.