Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: remix-run/remix
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c933c08efaea667ff265b2f0918072e5cc265d21
Choose a base ref
..
head repository: remix-run/remix
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6f98618399629ed6aa79d415d0414e16b4fc7216
Choose a head ref
Showing with 3 additions and 3 deletions.
  1. +3 −3 integration/deno-compiler-test.ts
6 changes: 3 additions & 3 deletions integration/deno-compiler-test.ts
Original file line number Diff line number Diff line change
@@ -92,23 +92,23 @@ test.beforeAll(async () => {
}
`,
"node_modules/npm-component/package.json": json({
name: "component",
name: "npm-component",
version: "1.0.0",
sideEffects: false,
}),
"node_modules/npm-component/index.js": js`
module.exports = { npmComponent: () => "NPM_COMPONENT" };
`,
"node_modules/npm-util/package.json": json({
name: "util",
name: "npm-util",
version: "1.0.0",
sideEffects: false,
}),
"node_modules/npm-util/index.js": js`
module.exports = { npmUtil: () => "NPM_UTIL" };
`,
"node_modules/npm-server-only/package.json": json({
name: "server-only",
name: "npm-server-only",
version: "1.0.0",
sideEffects: false,
}),