Skip to content
Cumulus template deployment project
Branch: master
Clone or download
markdboyd Merge pull request #14 from nasa/update-dependencies
Update Cumulus packages to ^1.12.1 and update Kes to 2.2.8
Latest commit 09f9eb5 Apr 8, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.circleci
iam
.gitignore update cumulus dependency versions & add lockfile Mar 27, 2019
.nvmrc
LICENSE
README.md improve documentation on managing Cumulus dependencies Apr 1, 2019
lambdas.yml CUMULUS-232 Changes to make the template workflow work with the messa… Feb 16, 2018
package-lock.json update Cumulus packages to ~1.12.1 and update Kes to 2.2.8 Apr 8, 2019
package.json update package.json dependencies for Cumulus and Kes to only allow up… Apr 8, 2019
workflows.yml Removing commas Feb 19, 2018

README.md

Cumulus Template Deployment Project

CircleCI

Documentation for how to use the Cumulus template project can be read online:

https://nasa.github.io/cumulus/docs/deployment/deployment-readme#prepare-daac-deployment-repository

Managing Cumulus package dependencies

This project depends on various Cumulus NPM packages specified in package.json. These dependencies may be behind the latest released versions for Cumulus core.

To check if your dependencies are out of date, compare the versions for @cumulus/<package-name> packages in the local package.json with the versions in the package.json files inside the Cumulus core repository package folders.

If any of your dependencies are out of date, update them:

  $ npm install @cumulus/<package-name>@^1.11.3 --save

Note: Using ^1.11.3 instead of 1.11.3 means that when you run npm install for this project in the future, if there are any newly released minor versions of that package (e.g. 1.11.4 or 1.12.0), they will be installed automatically. However, if you want to stay pinned to version 1.11.3 for the future, you can install using that exact version.

You can’t perform that action at this time.