Base solution for your next web application
Open Closed

possible build problem #6291


User avatar
0
murphymj5209 created

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)
  • User Avatar
    0
    ismcagdas created
    Support Team

    Hi @murphymj5209

    You should run "nmp run create-bundles" after building hte project. So, the correct order is;

    1. yarn
    2. Build project
    3. 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.

  • User Avatar
    0
    murphymj5209 created

    thank you for the answer.