Skip to content

Commit 5ae81b9

Browse files
committedMay 17, 2022
Merge branch 'dev' of github.com:remix-run/remix into release-v1.5.0
2 parents a7cef33 + ba6de76 commit 5ae81b9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+817
-486
lines changed
 

‎.eslintignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
**/tests/__snapshots/
33
**/node_modules/
44
!.eslintrc.js
5-
templates/deno
65
.tmp
76
/playground
87
**/__tests__/fixtures
8+
9+
# deno
10+
packages/remix-deno
11+
templates/deno

‎.vscode/deno_resolve_npm_imports.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"// Resolve NPM imports for `packages/remix-deno`.": "",
3+
4+
"// This import map is used solely for the denoland.vscode-deno extension.": "",
5+
"// Remix does not support import maps.": "",
6+
"// Dependency management is done through `npm` and `node_modules/` instead.": "",
7+
"// Deno-only dependencies may be imported via URL imports (without using import maps).": "",
8+
9+
"imports": {
10+
"mime": "https://esm.sh/mime@3.0.0",
11+
"@remix-run/server-runtime": "https://esm.sh/@remix-run/server-runtime@1.4.3"
12+
}
13+
}

0 commit comments

Comments
 (0)
Please sign in to comment.