Skip to content

Commit

Permalink
Merge pull request #56 from remix-run/brooks/remove-cross-env
Browse files Browse the repository at this point in the history
chore: remove cross-env for default and js templates
  • Loading branch information
brookslybrand authored Jan 13, 2025
2 parents 50ba05c + 8c9f3f8 commit fa92e6e
Show file tree
Hide file tree
Showing 3 changed files with 95 additions and 90 deletions.
5 changes: 2 additions & 3 deletions default/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@
"private": true,
"type": "module",
"scripts": {
"build": "cross-env NODE_ENV=production react-router build",
"build": "react-router build",
"dev": "react-router dev",
"start": "cross-env NODE_ENV=production react-router-serve ./build/server/index.js",
"start": "react-router-serve ./build/server/index.js",
"typecheck": "react-router typegen && tsc"
},
"dependencies": {
"@react-router/node": "*",
"@react-router/serve": "*",
"cross-env": "^7.0.3",
"isbot": "^5.1.17",
"react": "^19.0.0",
"react-dom": "^19.0.0",
Expand Down
5 changes: 2 additions & 3 deletions javascript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@
"private": true,
"type": "module",
"scripts": {
"build": "cross-env NODE_ENV=production react-router build",
"build": "react-router build",
"dev": "react-router dev",
"start": "cross-env NODE_ENV=production react-router-serve ./build/server/index.js"
"start": "react-router-serve ./build/server/index.js"
},
"dependencies": {
"@react-router/node": "*",
"@react-router/serve": "*",
"cross-env": "^7.0.3",
"isbot": "^5.1.17",
"react": "^19.0.0",
"react-dom": "^19.0.0",
Expand Down
Loading

0 comments on commit fa92e6e

Please sign in to comment.