so once we publish it to npm, we can install it with npm, yarn, pnpm etc. right?
@sairaj56603 жыл бұрын
yup
@SwashbucklingwithCode3 жыл бұрын
Yes, that's a great question and I should have added that as well.
@jamesbruner68343 жыл бұрын
Great video dude, easy to follow and informative. You love to see it.
@stephenpaulhassall8 ай бұрын
This was very good. Thank you good sir.
@49sandeep3 жыл бұрын
Awesome..plz keep it up...very well explained 👌🏻👌🏻👌🏻👏👏👏
@SwashbucklingwithCode3 жыл бұрын
Thank you, I shall try.
@feridbedelov11223 жыл бұрын
Looking forward to watching semantic versioning tutorial!!
@SwashbucklingwithCode3 жыл бұрын
Awesome! I already have it all planned out, I just got swamped recently with work.
@thepopstudio23543 жыл бұрын
The best channel i've ever seen! Do SQL pls if u can, i think it would be very interesting
@SwashbucklingwithCode3 жыл бұрын
Any specific SQL things you are looking for?
@thepopstudio23543 жыл бұрын
@@SwashbucklingwithCode SQL is required in many vacancies for the Front-end position, I would like to hear a professional opinion, is this technology really necessary and if so, can you make a video on the introduction to this technology?
@SwashbucklingwithCode3 жыл бұрын
@@thepopstudio2354 Oh, so you mean a SQL from scratch sort of thing? I wouldn't go so far as to say it's necessary, but I would definitely recommend it because you'll likely encounter it at once point. I'll add it to my queue and give my personal experience with it, but in the meantime there are definitely a ton of videos out there for it.
@drewbird873 жыл бұрын
Hey matey! Just want to say, thanks for the content 👍🏼👍🏼
@SwashbucklingwithCode3 жыл бұрын
I appreciate you taking a moment to say so.
@alainr9653 жыл бұрын
You saved my day !
@SwashbucklingwithCode3 жыл бұрын
Awesome. Glad to help.
@davidfromnorth78363 жыл бұрын
what's your font name?
@SwashbucklingwithCode3 жыл бұрын
I'm guessing you are asking about the code editor font, which is Cascadia in this one, I believe.
@bad_ai_engineer Жыл бұрын
Unfortunately I am having the problem where my code just doesn't end up in the registry even after a successful publish.
@SwashbucklingwithCode Жыл бұрын
It sometimes takes a while for it to show up, but I don't know how long you've tried waiting thus far.
@bad_ai_engineer Жыл бұрын
@@SwashbucklingwithCode I figured it out. I was with the package.json, I changed the output directory from `lib` to `dist` and didn't set the "files" key to "dist/**/*" and well as mention the new entrypoint, "main": "dist/index.js". It is working now lol, but I am just trying to figure out if I am over engineering now.