Skip to content

Commit f7f39eb

Browse files
committed
Add typecheck to Remix e2e test builds.
1 parent 1754702 commit f7f39eb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dev-packages/e2e-tests/test-applications/create-remix-app-v2/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"private": true,
33
"sideEffects": false,
44
"scripts": {
5-
"build": "remix build",
5+
"build": "pnpm typecheck && remix build",
66
"dev": "remix dev",
77
"start": "remix-serve build/index.js",
88
"typecheck": "tsc",

dev-packages/e2e-tests/test-applications/create-remix-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"private": true,
33
"sideEffects": false,
44
"scripts": {
5-
"build": "remix build --sourcemap && ./upload-sourcemaps.sh",
5+
"build": "pnpm typecheck && remix build --sourcemap && ./upload-sourcemaps.sh",
66
"dev": "remix dev",
77
"start": "remix-serve build",
88
"typecheck": "tsc",

0 commit comments

Comments
 (0)