File tree Expand file tree Collapse file tree 3 files changed +1
-65
lines changed Expand file tree Collapse file tree 3 files changed +1
-65
lines changed Original file line number Diff line number Diff line change @@ -685,7 +685,7 @@ jobs:
685
685
yarn test
686
686
687
687
job_remix_integration_tests :
688
- name : Remix (Node ${{ matrix.node }}) Tests
688
+ name : Remix v${{ matrix.remix }} (Node ${{ matrix.node }}) Tests
689
689
needs : [job_get_metadata, job_build]
690
690
if : needs.job_get_metadata.outputs.changed_remix == 'true' || github.event_name != 'pull_request'
691
691
runs-on : ubuntu-20.04
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -14,34 +14,6 @@ import type * as Express from 'express';
14
14
import type { Agent } from 'https' ;
15
15
import type { ComponentType } from 'react' ;
16
16
17
- type Dev = {
18
- command ?: string ;
19
- scheme ?: string ;
20
- host ?: string ;
21
- port ?: number ;
22
- restart ?: boolean ;
23
- tlsKey ?: string ;
24
- tlsCert ?: string ;
25
- } ;
26
-
27
- export interface FutureConfig {
28
- unstable_dev : boolean | Dev ;
29
- /** @deprecated Use the `postcss` config option instead */
30
- unstable_postcss : boolean ;
31
- /** @deprecated Use the `tailwind` config option instead */
32
- unstable_tailwind : boolean ;
33
- v2_errorBoundary : boolean ;
34
- v2_headers : boolean ;
35
- v2_meta : boolean ;
36
- v2_normalizeFormMethod : boolean ;
37
- v2_routeConvention : boolean ;
38
- }
39
-
40
- export interface RemixConfig {
41
- [ key : string ] : any ;
42
- future : FutureConfig ;
43
- }
44
-
45
17
export type RemixRequestState = {
46
18
method : string ;
47
19
redirect : RequestRedirect ;
@@ -161,7 +133,6 @@ export interface ServerBuild {
161
133
assets : AssetsManifest ;
162
134
publicPath ?: string ;
163
135
assetsBuildDirectory ?: string ;
164
- future ?: FutureConfig ;
165
136
}
166
137
167
138
export interface HandleDocumentRequestFunction {
You can’t perform that action at this time.
0 commit comments