Skip to content

Commit

Permalink
test(dev): restore fixture
Browse files Browse the repository at this point in the history
this fixture was incorrectly included as part of dependency upgrades:
- #3917
- #3929

it should not have been updated since it is supposed to represent a
Remix 1.3.x codebase
  • Loading branch information
pcattori committed Nov 15, 2022
1 parent c4cef84 commit 0e2c0b6
Show file tree
Hide file tree
Showing 30 changed files with 8 additions and 6 deletions.
Expand Up @@ -24,8 +24,8 @@
"@remix-run/react": "1.3.4",
"@remix-run/serve": "1.3.4",
"marked": "^4.0.12",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix": "1.3.4",
"tiny-invariant": "^1.2.0"
},
Expand All @@ -35,12 +35,12 @@
"@remix-run/eslint-config": "1.3.4",
"@testing-library/cypress": "^8.0.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^13.3.0",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"@types/eslint": "^8.4.6",
"@types/marked": "^4.0.2",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/react": "^17.0.40",
"@types/react-dom": "^17.0.13",
"@vitejs/plugin-react": "^1.2.0",
"c8": "^7.11.0",
"cross-env": "^7.0.3",
Expand Down
Expand Up @@ -19,6 +19,8 @@
"skipLibCheck": true,

// Remix takes care of building everything in `remix build`.
"noEmit": true
"noEmit": true,
"allowJs": true,
"forceConsistentCasingInFileNames": true
}
}

0 comments on commit 0e2c0b6

Please sign in to comment.