Skip to content

Commit

Permalink
distribution format (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
BlowaterNostr authored Jun 13, 2024
1 parent f6c8a23 commit 810db2f
Show file tree
Hide file tree
Showing 3 changed files with 16,783 additions and 7 deletions.
17 changes: 10 additions & 7 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,31 @@
"fresh",
"recommended"
],
"exclude": ["require-await", "require-yield", "no-unused-vars", "no-empty"]
"exclude": [
"require-await",
"require-yield",
"no-unused-vars",
"no-empty",
"mod.ts"
]
}
},
"exclude": [
"**/_fresh/*"
],
"imports": {
"$fresh/": "https://deno.land/x/[email protected]/",
"preact": "https://esm.sh/[email protected]",
"preact/": "https://esm.sh/[email protected]/",
"@preact/signals": "https://esm.sh/*@preact/[email protected]",
"@preact/signals-core": "https://esm.sh/*@preact/[email protected]",
"tailwindcss": "npm:[email protected]",
"tailwindcss/": "npm:/[email protected]/",
"tailwindcss/plugin": "npm:/[email protected]/plugin.js",
"$std/": "https://deno.land/[email protected]/"
"tailwindcss/plugin": "npm:/[email protected]/plugin.js"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact",
"lib": [
"deno.unstable"
"deno.unstable",
"dom"
],
"noImplicitAny": false
},
Expand Down
3 changes: 3 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,6 @@ test: fmt
cov:
deno coverage coverage --html
file_server -p 4508 coverage/html

bundle:
deno bundle main.ts mod.ts
Loading

0 comments on commit 810db2f

Please sign in to comment.