Skip to content

Commit

Permalink
use cross-env for silly windows users
Browse files Browse the repository at this point in the history
  • Loading branch information
ebiggz committed Dec 8, 2024
1 parent ad7905d commit ffec3c7
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 2 deletions.
29 changes: 29 additions & 0 deletions package-lock.json

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

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"@types/luxon": "^3.4.2",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"cross-env": "^7.0.3",
"eslint": "^9.9.0",
"eslint-config-prettier": "^ 9.1.0",
"eslint-plugin-prettier": "^5.2.1",
Expand All @@ -27,8 +28,8 @@
"typescript": "^5.5.4"
},
"scripts": {
"dev": "tsc && NODE_ENV=development node dist/main.js",
"start": "NODE_ENV=production node dist/main.js",
"dev": "tsc && cross-env NODE_ENV=development node dist/main.js",
"start": "cross-env NODE_ENV=production node dist/main.js",
"build": "tsc",
"lint": "eslint . --ext .js,.ts",
"test": "jest"
Expand Down

0 comments on commit ffec3c7

Please sign in to comment.