Skip to content
This repository has been archived by the owner on Sep 22, 2024. It is now read-only.

Commit

Permalink
chore: updates deno.json files
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelrk committed Jul 9, 2024
1 parent c201bce commit 697007b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
2 changes: 1 addition & 1 deletion deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
},
"fmt": { "lineWidth": 100 },
"compilerOptions": {
"lib": ["dom", "dom.asynciterable", "deno.ns"],
"lib": ["dom", "dom.iterable", "dom.asynciterable", "deno.ns", "deno.unstable"],
"jsx": "precompile",
"jsxImportSource": "preact",
"jsxImportSourceTypes": "npm:@types/[email protected]",
Expand Down
10 changes: 2 additions & 8 deletions tests/fixture-plugins-mdx/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,13 @@
"exclude": ["**/_fresh/*"],
"lock": false,
"tasks": {
"check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
"cli": "echo \"import '\\fresh/src/dev/cli.ts'\" | deno run --unstable -A -",
"manifest": "deno task cli manifest $(pwd)",
"start": "deno run -A --watch=static/,routes/ dev.ts",
"build": "deno run -A dev.ts build",
"preview": "deno run -A main.ts",
"update": "deno run -A -r https://fresh.deno.dev/update ."
"dev": "deno run -A --watch=static/,routes/ dev.ts"
},
"unstable": ["cron", "kv", "temporal"],
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"fmt": { "lineWidth": 100 },
"compilerOptions": {
"lib": ["dom", "dom.asynciterable", "deno.ns"],
"lib": ["dom", "dom.iterable", "dom.asynciterable", "deno.ns", "deno.unstable"],
"jsx": "precompile",
"jsxImportSource": "preact",
"jsxImportSourceTypes": "npm:@types/[email protected]",
Expand Down
4 changes: 2 additions & 2 deletions tests/fixture-plugins-unocss/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
"exclude": ["**/_fresh/*"],
"lock": false,
"tasks": {
"start": "deno run -A --watch=static/,routes/ dev.ts"
"dev": "deno run -A --watch=static/,routes/ dev.ts"
},
"unstable": ["cron", "kv", "temporal"],
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"fmt": { "lineWidth": 100 },
"compilerOptions": {
"lib": ["dom", "dom.asynciterable", "deno.ns"],
"lib": ["dom", "dom.iterable", "dom.asynciterable", "deno.ns", "deno.unstable"],
"jsx": "precompile",
"jsxImportSource": "preact",
"jsxImportSourceTypes": "npm:@types/[email protected]",
Expand Down

0 comments on commit 697007b

Please sign in to comment.