Skip to content

Commit

Permalink
Fix broken start command
Browse files Browse the repository at this point in the history
  • Loading branch information
brookslybrand committed Dec 19, 2024
1 parent ea787cf commit 271a0d4
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 34 deletions.
61 changes: 31 additions & 30 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"type": "module",
"scripts": {
"dev": "cross-env NODE_ENV=development node server.js",
"build": "cross-env NODE_ENV=development react-router build",
"build": "react-router build",
"format": "prettier --write . && npm run lint:fix",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"lint:fix": "npm run lint -- --fix",
"start": "cross-env NODE_ENV=production node server.js",
"start": "node server.js",
"preview": "cross-env NODE_ENV=production dotenv node server.js",
"test": "vitest",
"typecheck": "react-router typegen && tsc",
Expand All @@ -24,7 +24,7 @@
"@docsearch/css": "^3.8.0",
"@docsearch/react": "^3.8.0",
"@react-router/express": "^7.0.2",
"@react-router/node": "^7.0.1",
"@react-router/node": "^7.0.2",
"@types/express": "^5.0.0",
"cheerio": "^1.0.0-rc.12",
"classnames": "^2.3.2",
Expand All @@ -45,7 +45,7 @@
"parse-numeric-range": "^1.3.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "7.0.1",
"react-router": "^7.0.2",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.0",
Expand Down

0 comments on commit 271a0d4

Please sign in to comment.