Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mgr/dashboard: Add package-lock.json #23285

Merged
merged 2 commits into from Aug 6, 2018
Merged

Commits on Jul 31, 2018

  1. mgr/dashboard: Add package-lock.json

    This will make sure that, at anytime, when someone runs 'npm install'
    the resulting packages that are installed are allways the same.
    
    Signed-off-by: Tiago Melo <tmelo@suse.com>
    tspmelo committed Jul 31, 2018
    Configuration menu
    Copy the full SHA
    7299ee3 View commit details
    Browse the repository at this point in the history
  2. mgr/dashboard: Replace "npm install" with "npm ci"

    "npm ci" is the recommended command to install dependencies
    in a continuous integration system.
    
    It will make sure node_modules is empty and that the version in
    "package-lock.json" match the ones in "package.json"
    
    Signed-off-by: Tiago Melo <tmelo@suse.com>
    tspmelo committed Jul 31, 2018
    Configuration menu
    Copy the full SHA
    b4fc13d View commit details
    Browse the repository at this point in the history