Skip to content

Commit fdc75a8

Browse files
committed
fix: format
1 parent 265003a commit fdc75a8

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

build/esbuild.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import { denoPlugin as esbuildPluginDeno } from "@deno/esbuild-plugin";
88
import { solidPlugin as esbuildPluginSolidJS } from "@esbuild-plugin-solid";
99

1010
const args = parseArgs<{
11-
watch: boolean | undefined,
12-
develop: boolean | undefined,
13-
logLevel: esbuild.LogLevel
11+
watch : boolean | undefined,
12+
develop : boolean | undefined,
13+
logLevel : esbuild.LogLevel
1414
}>(Deno.args);
1515

1616
const copyConfig : esbuild.BuildOptions = {

build/plugins/transform_script_tags.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import type * as esbuild from '@esbuild';
22

33

44
export function transformScriptTags(options?: {
5-
pattern?: RegExp,
6-
replaceExtensionWith?: string
5+
pattern? : RegExp,
6+
replaceExtensionWith? : string
77
}) : esbuild.Plugin {
88
return ({
99
name: 'html-script-tags',

src/client/pages/404/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type {JSXElement} from '@solid-js'
1+
import type { JSXElement } from '@solid-js'
22
import './index.css'
33

44

src/client/pages/home/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type {JSXElement} from '@solid-js'
1+
import type { JSXElement } from '@solid-js'
22
import './index.css'
33

44

0 commit comments

Comments
 (0)