#NPM RUN BUILD with no build
1 messages · Page 1 of 1 (latest)
🔎 This post has been indexed in our web forum and will be seen by search engines so other users can find it outside Discord
🕵️ Your user profile is private by default and won't be visible to users outside Discord, if you want to be visible in the web forum you can add the "Public Profile" role in id:customize
✅ You can mark a message as the answer for your post with Right click -> Apps -> Mark Solution
(if you don't see the option, try refreshing Discord with Ctrl + R)
Hey it's impossible 🙂
getting the output of npm run build without building is impossible as tamdoge said.
HOwever, you can still check your types and your application like that. Run npm run tsc or npm run lint to check your types. If you have testing script, then run them as well npm run test.
You dont want to do this manually. Install husky and put it into a github hook like pre-commit or similar. Then it happens automatically for and everything is fine ^^