Skip to content
This repository has been archived by the owner on May 17, 2019. It is now read-only.

Commit

Permalink
update readme and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
eeue56 committed Mar 8, 2016
1 parent 241f777 commit 69d8952
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ python elm_deps_check.py ../NoRedInk/elm-package.json ../NoRedInk/spec/elm/elm-p

Sometimes we want to figure out if our elm-package.json contains old deps.

Usage:

- `--elm-version` if you want to specify a different version of Elm. Defaults to 0.16

```bash

python elm_deps_upgrade.py elm-package.json
Expand Down
6 changes: 3 additions & 3 deletions elm_deps_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ def have_matching_versions(top_level_file, spec_file, is_exact=False, quiet=True

def main():

parser = argparse.ArgumentParser(description='Process some integers.')
parser = argparse.ArgumentParser(description='Check deps matching between a parent and a sub')

parser.add_argument('--quiet', '-q', action='store_true', help='don\'t print anything')
parser.add_argument('--exact', '-e', action='store_true', help='these files are exact dependencies')
parser.add_argument('--quiet', '-q', action='store_true', help='don\'t print anything', default=False)
parser.add_argument('--exact', '-e', action='store_true', help='these files are exact dependencies', default=False)

parser.add_argument('top_level_file')
parser.add_argument('spec_file')
Expand Down

0 comments on commit 69d8952

Please sign in to comment.