forked from remix-run/remix
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "chore: update Deno import maps on release (remix-run#3225)" (r…
…emix-run#3254) This reverts commit c28e179.
- Loading branch information
Showing
16 changed files
with
29 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
"// Deno-only dependencies may be imported via URL imports (without using import maps).": "", | ||
|
||
"imports": { | ||
"@remix-run/server-runtime": "https://esm.sh/@remix-run/[email protected].0", | ||
"mime": "https://esm.sh/[email protected]" | ||
"mime": "https://esm.sh/[email protected].0", | ||
"@remix-run/server-runtime": "https://esm.sh/@remix-run/[email protected]" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -156,7 +156,6 @@ | |
- jesse-deboer | ||
- jesseflorig | ||
- jgarrow | ||
- jiahao-c | ||
- jkup | ||
- jmasson | ||
- JNaftali | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
node_modules | ||
/node_modules/ | ||
|
||
/.cache | ||
/build | ||
/public/build | ||
.env | ||
/public/build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,11 +5,11 @@ | |
"// Deno-only dependencies may be imported via URL imports (without using import maps).": "", | ||
|
||
"imports": { | ||
"@remix-run/deno": "https://esm.sh/@remix-run/[email protected].0", | ||
"@remix-run/dev/server-build": "https://esm.sh/@remix-run/[email protected]/server-build", | ||
"@remix-run/react": "https://esm.sh/@remix-run/react@1.5.0", | ||
"react": "https://esm.sh/[email protected]", | ||
"react-dom": "https://esm.sh/[email protected]", | ||
"react-dom/server": "https://esm.sh/[email protected]/server" | ||
"react": "https://esm.sh/[email protected].0", | ||
"react-dom": "https://esm.sh/[email protected]", | ||
"react-dom/server": "https://esm.sh/react[email protected]/server", | ||
"@remix-run/dev/server-build": "https://esm.sh/@remix-run/[email protected]/server-build", | ||
"@remix-run/deno": "https://esm.sh/@remix-run/[email protected]", | ||
"@remix-run/react": "https://esm.sh/@remix-run/[email protected]" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"deno.enable": true, | ||
"deno.importMap": "./.vscode/resolve_npm_imports.json", | ||
"deno.lint": true | ||
"deno.lint": true, | ||
"deno.importMap": "./.vscode/resolve_npm_imports.json" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import React from "react"; | ||
import ReactDOM from "react-dom"; | ||
import { RemixBrowser } from "@remix-run/react"; | ||
import * as React from "react"; | ||
import { hydrate } from "react-dom"; | ||
|
||
hydrate(<RemixBrowser />, document); | ||
ReactDOM.hydrate(<RemixBrowser />, document); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import * as React from "react"; | ||
import React from "react"; | ||
|
||
export default function Index() { | ||
return ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,12 @@ | ||
module.exports = { | ||
serverBuildTarget: "deno", | ||
server: "./server.ts", | ||
|
||
/* | ||
If live reload causes page to re-render without changes (live reload is too fast), | ||
increase the dev server broadcast delay. | ||
If live reload seems slow, try to decrease the dev server broadcast delay. | ||
*/ | ||
devServerBroadcastDelay: 300, | ||
ignoredRouteFiles: ["**/.*"], | ||
// appDirectory: "app", | ||
// assetsBuildDirectory: "public/build", | ||
// serverBuildPath: "build/index.js", | ||
// publicPath: "/build/", | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,3 @@ node_modules | |
/build/ | ||
/public/build | ||
/api/index.js | ||
/api/index.js.map |