aboutsummaryrefslogtreecommitdiff
path: root/package.json
Commit message (Collapse)AuthorAgeFilesLines
* #17 Move TOKEN from EnvConfig to databaseKevin J Hoerr2022-04-071-0/+2
|
* Add debug script for test to see heap, gcKevin J Hoerr2022-04-071-0/+1
|
* #18 Add unit tests for MetadataKevin J Hoerr2022-04-071-2/+1
|
* Update dependencies to fix jest issueKevin J Hoerr2022-04-051-7/+7
|
* Update dependenciesKevin J Hoerr2022-04-031-24/+24
|
* Update yarn configurationKevin J Hoerr2022-04-031-1/+2
|
* Prepare repository for 0.5.4 releaseKevin J Hoerr2021-09-251-1/+1
|
* Move to Plug'n'Play over node_modulesKevin J Hoerr2021-09-251-3/+4
|
* Move TS dependencies to devDependenciesKevin J Hoerr2021-09-251-6/+6
|
* Tweak jest configurationKevin J Hoerr2021-09-251-2/+6
|
* Prepare repository for 0.5.3 releaseKevin J Hoerr2021-09-241-1/+1
|
* Add coverage threshold; copy .env for DroneKevin J Hoerr2021-09-241-1/+9
|
* Add unlisted dependencies, small yarn fixesKevin J Hoerr2021-09-241-0/+2
|
* Remove runInBand flag for jestKevin J Hoerr2021-09-221-2/+2
|
* Prepare repository for 0.5.2 releaseKevin J Hoerr2021-09-211-1/+1
|
* Tweaks and FixesKevin J Hoerr2021-09-211-1/+1
| | | | | | | - Change default port for Dockerfile to 80 - Use cobertura for coverage report :) - Add starter data for .devcontainer - Add FORMAT var for sh script (*needs change)
* Prepare repository for 0.5.1 releaseKevin J Hoerr2021-09-201-1/+1
|
* The Whole Barnshow CommitKevin J Hoerr2021-09-201-29/+31
| | | | | | | | | - Use yarn-berry instead of npm, with Zero Install feature and goodies - Add `initializeToken` to post unique token to logs on startup - Package upgrades - Fix index.html.template tests I will never do this again
* Prepare repository for 0.5.0 releaseKevin J Hoerr2021-09-161-1/+1
|
* Add format to head commit infoKevin J Hoerr2021-09-161-1/+2
|
* #7 Add Cobertura formatKevin J Hoerr2021-09-161-1/+3
|
* Prepare repository for 0.4.4 releaseKevin J Hoerr2021-09-121-1/+1
|
* Update dependencies to suppress MongoClient outputKevin J Hoerr2020-05-061-7/+7
|
* Prepare repository for 0.4.3 releaseKevin J Hoerr2020-04-271-3/+3
|
* Add TSDoc and TypeDoc to handle documentationKevin J Hoerr2020-04-271-3/+7
|
* These changes moved a lot of the startup async to run in a streamlinedKevin J Hoerr2020-04-261-2/+1
| | | | | | | | | | async init function. This brings more logic "to light", so it should probably have unit tests added to check the edge cases. As a bonus, no async runs as a result of route initialization. Speaking of routes, it might be nice to trim down the route calls themselves with async functions, if possible. The upload routes in particular use a lot of async. Just a note for the future.
* Upgrade packages and fix express type changeKevin J Hoerr2020-04-261-14/+15
|
* Update jest to 25.1Kevin J Hoerr2020-02-231-3/+3
|
* Prepare repository for 0.4.1 releaseKevin J Hoerr2020-02-231-1/+1
|
* Prepare repository for 0.4.0 releaseKevin J Hoerr2020-02-221-1/+1
|
* Update packages to latestKevin J Hoerr2020-02-221-11/+11
|
* #8 Add router unit tests using supertestKevin J Hoerr2020-01-111-0/+3
| | | | Also moved the template processing from index to router.
* Prepare repository for 0.3.3 releaseKevin J Hoerr2019-12-211-10/+10
|
* Prepare repository for 0.3.2 releaseKevin J Hoerr2019-12-121-5/+5
|
* Use nullish-coalescing op for env var assignmentsKevin J Hoerr2019-12-121-1/+2
|
* Add ts-jest to improve TS coverage reportsKevin J Hoerr2019-12-111-4/+10
|
* Prepare repository for 0.3.1 releaseKevin J Hoerr2019-12-111-3/+3
|
* Finish developing unit tests for formats, loggerKevin J Hoerr2019-12-111-1/+4
|
* Add Jest to handle unit and integration testingKevin J Hoerr2019-12-111-0/+9
| | | | | | | | | | | | Wrote a couple of initial unit tests for some of the logic-heavy points in the application, being logger.ts and formats.ts. Evidently colorize() causes an error when transforming on the Format object that's returned. Since that is specific to the Console transport anyways, I just moved it to the transport, since the unit test was only testing the passed label in the returned Formats object. Also the bash template has some issues that I didn't test (oops), so those are fixed now.
* Prepare repository for 0.3.0 releaseKevin J Hoerr2019-12-101-1/+1
|
* Fix reported license and update changelogKevin J Hoerr2019-12-101-1/+3
|
* Add template process to serve bash fileKevin J Hoerr2019-12-091-1/+2
| | | | | | | | | | | | Unfortunately, a static file can't really be used to serve the connection - the host address is needed to link back to the server. Only a light library is needed to handle the template file though, and if more are needed in the future it should be a non-trivial task to add them to the process. By default I'm configuring this to work with drone.io, since that is the CI that I personally will be using (most likely). It should be non-trivial to configure other CI to handle the script as well.
* Add linting to project using EslintKevin J Hoerr2019-12-091-0/+8
|
* Change start script to start:dev with watcherKevin J Hoerr2019-12-091-3/+4
| | | | | There is currently no prod start command - this can be adopted later when desired.
* Overhaul error handling for controllersKevin J Hoerr2019-12-081-1/+1
| | | | | | | | | | | This change fixes various issues with the GET endpoints to return more accurate error messages. It adds business logic error objects that are returned in a union type in the controllers. This change should help separate the business logic from the actual errors from upstream services. There may be required changes still with handling those upstream errors via Promises. Integration tests should be added to verify issues.
* Prepare repository for 0.2.0 releaseKevin J Hoerr2019-12-081-1/+1
|
* Add winston, express-winston to handle loggingKevin J Hoerr2019-12-081-1/+3
|
* Add Metadata core with MongoDB for persistenceKevin J Hoerr2019-12-071-0/+2
| | | | | | | | | | | With the new process dependency, process handling has been added to ensure that the ExpressJS server and MongoDB client connections get closed up properly. As noted in the Metadata file above the Branch interface, the schema is definitely not finalized. Eventually metadata will be needed at the repo level anyways, so reorganizing the document schema is high on the priority list.
* Prepare repository for 0.1.0 releaseKevin J Hoerr2019-11-301-1/+1
|
* Implement file handling for reportsKevin J Hoerr2019-11-291-0/+2
|