i downloaded the latest code and am attempting to make sure that nothing is incorrect for my Jquery solution
My steps were to a) make sure the prereq's were installed b) in the mvc directory i use yarn, i type it using powershell as a Admin c) then i had to open the solution, which seemed to install some JS code d) then i did the nmp run create-bundles, again in the powershell Admin. Only after this, did i finally attempt a build, which i am not sure if it worked OK. i have alot of warnings and i do not feel the mobile.share is building properly. i have these unresolved caution signs.
i have done installs of moment-timezone and grunt both global. please let me know what i have not done correctly. thanks.
2 Answer(s)
-
0
Hi @murphymj5209
You should run "nmp run create-bundles" after building hte project. So, the correct order is;
- yarn
- Build project
- npm run create-bundles
By the way, you can run "dotnet restore" on the root project directory and see if all packages are restored correctly. If all packages are restored correctly, you don't have to worry about Mobile Shared project.
-
0
thank you for the answer.