Skip to content

Commit

Permalink
cross-env
Browse files Browse the repository at this point in the history
  • Loading branch information
SnoopyDevelops committed Apr 19, 2023
1 parent b88f9a1 commit 0be6dbf
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,5 @@ yarn-error.log*
next-env.d.ts

vale-styles

.idea/
2 changes: 1 addition & 1 deletion api-service/playground/nodemon.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
],
"ext": ".ts",
"delay": 200,
"exec": "export NODE_ENV=dev; tsoa spec-and-routes && ./scripts/build.js && node ./lib/server.js"
"exec": "cross-env NODE_ENV=dev; tsoa spec-and-routes && cross-env ./scripts/build.js && node ./lib/server.js"
}
19 changes: 19 additions & 0 deletions package-lock.json

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

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"dev": "npx concurrently -p none \"next dev\" \"npm run start:api\" \"npm run start:playground\"",
"dev:api-service": "npx concurrently \"npm run start:api\" \"npm run start:playground\"",
"build": "next build",
"start:api": "cd api-service && QUART_APP=app:app PYTHONUNBUFFERED=1 QUART_RESPONSE_TIMEOUT=86400 poetry run quart --debug run --reload --port 49155",
"start:api": "cd api-service && cross-env QUART_APP=app:app PYTHONUNBUFFERED=1 QUART_RESPONSE_TIMEOUT=86400 poetry run quart --debug run --reload --port 49155",
"start:playground": "cd api-service/playground && npm run dev",
"install:api-service": "cd api-service && poetry install --with dev && cd playground && npm i",
"install:all": "npm i && npm run install:api-service",
Expand Down Expand Up @@ -86,6 +86,7 @@
"@types/react-dom": "^18.0.11",
"autoprefixer": "^10.4.13",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"cssnano": "^5.1.15",
"eslint": "^8.35.0",
"eslint-config-next": "^13.2.3",
Expand Down

0 comments on commit 0be6dbf

Please sign in to comment.