-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(common): Introduced common library for all sub-services (#4)
* initial common * Build common * Renamed to build-js * Renamed * include chai * Use chai * Finalized tests * Move xo to root * Actually remove xo from projects * Allow anonymous exports * xo format * Test error handler * Test RootError * Install xo * Do xo validations across projects * Find each tar and untar * Moved integration testing to the root * Removed * Moved to int-test * Integartion tests * Change it up * zine-generator * Do integration testing * Build docker * Build with working directory * Added NotFoundError * Cleaned up package * Removed int-test * Fixed integration test dockerfile * Remove node_modules from xo * XO ignore current dir * Move end-to-end to test * Include common * Removed int-test from zine-generator * Fixed packaging * Build common package * RouteNotFoundError * Use different exports * use common error handler * Use common error handler * Fix ignores * Fixed XO * Don't fail if file can't be found * Fixed imports * Include correct dir * Mispelled parameters * Debug * Try persisting different path * Avoid failure * Use folder * Install common before doing your own * Include common for template * Do common * Include common * Try different way * Build common image * common dockerfile * Docker build from common * Use common docker * Load common image * Build common docker * Depend on buildjs * Use common image build arg * Accidental remove * Integration tests * removed error-handler as its common now * Only include common * Build template as well * Use root dir * Ignore all subfolder c8/mocha * Use matrix for deploy env * Fixed config * Do integration testing even for main * Add test results * Clean up lcov files * Fixed multiline * Include JUnit reporter * Exec * Debugging sonar * removed template from build * Prod separate * Remove pack * Don't ignore * Dependabot changes for common * Use dev-deps * deps-dev * Fixed dependabot [ci skip]
- Loading branch information
1 parent
d9df1ce
commit 9e06b4d
Showing
42 changed files
with
24,627 additions
and
30,340 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FROM node:16.10.0-alpine3.11 | ||
LABEL org.opencontainers.image.authors="SuperFlyXXI <superflyxxi@yahoo.com>" | ||
ENV NODE_ENV=production | ||
WORKDIR /app | ||
ENTRYPOINT ["npm"] | ||
CMD ["start"] | ||
COPY ./ /common/ | ||
RUN cd /common && npm install |
Oops, something went wrong.