chore: Environments in npm commandos
This commit is contained in:
		
							parent
							
								
									7fd6305fd9
								
							
						
					
					
						commit
						9a96e480cd
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		|  | @ -5,9 +5,9 @@ | |||
|     "private": true, | ||||
|     "type": "module", | ||||
|     "scripts": { | ||||
|         "build": "tsc --project tsconfig.json", | ||||
|         "dev": "tsx watch --env-file=.env.development.local src/app.ts", | ||||
|         "start": "node --env-file=.env dist/app.js", | ||||
|         "build": "NODE_ENV=production tsc --project tsconfig.json", | ||||
|         "dev": "NODE_ENV=development tsx watch --env-file=.env.development.local src/app.ts", | ||||
|         "start": "NODE_ENV=production node --env-file=.env dist/app.js", | ||||
|         "format": "prettier --write src/", | ||||
|         "format-check": "prettier --check src/", | ||||
|         "lint": "eslint . --fix", | ||||
|  |  | |||
		Reference in a new issue