aboutsummaryrefslogtreecommitdiff
path: root/package-lock.json
AgeCommit message (Collapse)Author
2020-10-25Add ability to diff zones generated from current config against latest releaseevansiroky
Fixes #83
2020-10-17Update packages to latest versionsevansiroky
2020-10-14Fix lint errors and update package-lock.jsonNeil Fuller
This commit fixes lint errors and updates package-lock.json / package.json. package-lock.json / package were generated by reverting: git checkout 5ce291934eba5a2d114b756f33ff62f9ac0db632 -- \ package-lock.json package.json ... then running ... npm install yargs Note: timezone-boundary-builder ran without adding yargs explicitly because it is a transitive dependency of some other packages already used, but recording the dependency seems like good practice. "npm audit fix" was _not_ run. Tested with: $ node --max-old-space-size=8192 index.js \ --downloads_dir=mydownloads \ --dist_dir=mydist \ --included_zones America/New_York America/Chicago
2020-08-14More fixes related to review feedbackNeil Fuller
More fixes related to review feedback: 1) Added yargs to package.json, reran npm update (also updates package-lock.json) 2) Added global variables for downloads_dir / dist_dir, which holds the absolute path for argv.downloads_dir / argv.dist_dir after a call to path.resolve(). Switched the code to use them. 3) Fixed hardcoding of "dist/" and "download/" in the zipInputData step. Tested with: $ node --max-old-space-size=8192 index.js \ --downloads_dir=mydownloads \ --dist_dir=mydist \ --included_zones America/New_York America/Chicago
2020-04-30Add yargs integration for command line flagsNeil Fuller
Add yargs integration for command line flags in preparation for adding a more. yargs doesn't appear to support the existing flags containing minus ('-') characters in the middle, i.e. --no-validation and --filtered-zones so these have been renamed to --no_validation and --included_zones respectively. --included_zones now takes a list without quotes or commas. This change also updates the README.md example to demonstrate the --included_zones flag.
2020-04-24Update packages to latest versionsevansiroky
2020-04-24Merge pull request #81 from evansiroky/dependabot/npm_and_yarn/acorn-6.4.1Evan Siroky
Bump acorn from 6.1.1 to 6.4.1
2020-04-24Merge pull request #73 from evansiroky/dependabot/npm_and_yarn/lodash-4.17.15Evan Siroky
Bump lodash from 4.17.11 to 4.17.15
2020-03-14Bump acorn from 6.1.1 to 6.4.1dependabot[bot]
Bumps [acorn](https://github.com/acornjs/acorn) from 6.1.1 to 6.4.1. - [Release notes](https://github.com/acornjs/acorn/releases) - [Commits](https://github.com/acornjs/acorn/compare/6.1.1...6.4.1) Signed-off-by: dependabot[bot] <support@github.com>
2019-10-15Bump lodash from 4.17.11 to 4.17.15dependabot[bot]
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.11 to 4.17.15. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.11...4.17.15) Signed-off-by: dependabot[bot] <support@github.com>
2019-10-15Bump eslint-utils from 1.3.1 to 1.4.2dependabot[bot]
Bumps [eslint-utils](https://github.com/mysticatea/eslint-utils) from 1.3.1 to 1.4.2. - [Release notes](https://github.com/mysticatea/eslint-utils/releases) - [Commits](https://github.com/mysticatea/eslint-utils/compare/v1.3.1...v1.4.2) Signed-off-by: dependabot[bot] <support@github.com>
2019-07-02Update all packages to latest versionsevansiroky
2019-03-31Add standard linterevansiroky
2018-12-31Update to node.js version 10.evansiroky