Add next-env.d.ts to .gitignore (#47)

* Remove next-env

* Add next env to gitignore

* Add typegen to test script
This commit is contained in:
Vitaly Rtishchev
2025-11-04 09:23:43 +03:00
committed by GitHub
parent 48454f0847
commit 5fc5f6a18c
3 changed files with 3 additions and 8 deletions
+1 -1
View File
@@ -15,7 +15,7 @@
"jest:watch": "jest --watch",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"test": "npm run prettier:check && npm run lint && npm run typecheck && npm run jest",
"test": "npx next typegen && npm run prettier:check && npm run lint && npm run typecheck && npm run jest",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build"
},