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

Cli #771

Open
wants to merge 28 commits into
base: master
Choose a base branch
from
Open

Cli #771

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
4386972
cli initial commit
nspringman Jul 21, 2020
cc84713
load ageDistribution as JSON, add country name age distribution argument
nspringman Jul 22, 2020
b9c3e91
load severity distribution as json instead of import
nspringman Jul 22, 2020
3019627
change ownership to group
nspringman Jul 23, 2020
6f7d256
cleanup
nspringman Jul 27, 2020
e36bc5e
merger
r-s-rai Jul 27, 2020
e65311f
Merge pull request #770 from 437su20-C-R-N/cli
r-s-rai Jul 27, 2020
a36dfb4
test file
r-s-rai Jul 27, 2020
3d0bf79
fix: update package.json to current dependency versions
nspringman Jul 28, 2020
5b1dba1
fix: add neodoc to package.json
nspringman Jul 28, 2020
9792ddf
fix: resolve most linting issues
nspringman Jul 28, 2020
2c3c98f
fix: upload yarn.lock to match updated package.json
nspringman Jul 29, 2020
7a7591f
chore: add typings for neodoc
ivan-aksamentov Jul 29, 2020
3f2736a
chore: disable unused eslint ignore
ivan-aksamentov Jul 29, 2020
5870d84
chore: create additional tsconfig for cli
ivan-aksamentov Jul 29, 2020
b1c6a36
fix: resolve typescript errors
nspringman Jul 29, 2020
1c2e65d
fix: resolve lint issues
nspringman Jul 30, 2020
0ed863f
More arguments
r-s-rai Aug 3, 2020
2fccf64
feat: allow for more cli arguments
calvinm4 Aug 4, 2020
9b27ebc
feat: add remaining arguments + option descriptions
calvinm4 Aug 4, 2020
2ff6d78
feat: add multiple mitigations from prompt
nspringman Aug 4, 2020
01b2fb0
feat: add scenario and override validation
nspringman Aug 5, 2020
5c82e14
fix: add more to input validation
nspringman Aug 10, 2020
c6104ad
fix: validation
nspringman Aug 11, 2020
8c061f2
Merge remote-tracking branch 'origin/master' into cli
ivan-aksamentov Aug 12, 2020
530610a
refactor: adjust cli to schema version 2.1.0
ivan-aksamentov Aug 12, 2020
65cbbc7
fix: format, apply eslint autofixes
ivan-aksamentov Aug 12, 2020
9409558
fix: bug when changing age distribution
calvinm4 Aug 14, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"codeclimate": "UID=$(id -u) DOCKER_BUILDKIT=1 COMPOSE_DOCKER_CLI_BUILD=1 docker-compose -f docker/docker-compose.codeclimate.yml --compatibility up",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect",
"cli": "yarn babel-node --extensions \".ts\" src/algorithms/cli.ts"
"cli": "yarn babel-node --extensions \".ts\" src/cli/cli.ts"
},
"dependencies": {
"@devexpress/dx-core": "2.7.0",
Expand Down Expand Up @@ -97,6 +97,7 @@
"lodash": "4.17.19",
"mathjs": "7.1.0",
"moment": "2.27.0",
"neodoc": "2.0.2",
"next": "9.4.4",
"next-compose-plugins": "2.2.0",
"numbro": "2.3.1",
Expand Down
107 changes: 0 additions & 107 deletions src/algorithms/cli.ts

This file was deleted.

Loading