File tree 3 files changed +4
-13
lines changed
3 files changed +4
-13
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"tasks" : {
3
- "build" : " deno run -A npm:@remix-run/dev@* vite:build" ,
4
- "dev" : " deno run -A npm:@remix-run/dev@* vite:dev" ,
3
+ "build" : " deno run -A ' npm:@remix-run/dev@*' vite:build" ,
4
+ "dev" : " deno run -A ' npm:@remix-run/dev@*' vite:dev" ,
5
5
"typecheck" : " deno check '**/*' && deno run -A npm:typescript@^5.5.4/tsc" ,
6
6
"typegen" : " deno types > ./app/deno.d.ts"
7
7
},
Original file line number Diff line number Diff line change @@ -386,6 +386,7 @@ function deno(
386
386
...process . env ,
387
387
...colorEnv ,
388
388
...options . env ,
389
+ DENO_FUTURE : "1" ,
389
390
} ,
390
391
stdio : "pipe" ,
391
392
} ) ;
Original file line number Diff line number Diff line change 1
1
import { expect } from "@playwright/test" ;
2
- import dedent from "dedent" ;
3
2
4
3
import type { Files } from "./helpers/vite.js" ;
5
4
import { test , viteConfig } from "./helpers/vite.js" ;
6
5
7
6
const files : Files = async ( { port } ) => ( {
8
- "vite.config.ts" : dedent `
9
- import { vitePlugin as remix } from "@remix-run/dev";
10
-
11
- export default {
12
- ${ await viteConfig . server ( { port } ) }
13
- plugins: [
14
- remix(),
15
- ],
16
- }
17
- ` ,
7
+ "vite.config.ts" : await viteConfig . basic ( { port } ) ,
18
8
"app/routes/_index.tsx" : `
19
9
import { Form, useLoaderData } from "@remix-run/react";
20
10
import {
You can’t perform that action at this time.
0 commit comments