Skip to content

Commit

Permalink
release: v0.2.0-66
Browse files Browse the repository at this point in the history
  • Loading branch information
tks18 committed Aug 25, 2022
1 parent 739f179 commit 6328108
Show file tree
Hide file tree
Showing 4 changed files with 252 additions and 14 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,32 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [0.2.0-66](https://github.com/zyndex-drive/server/compare/v0.2.0-65...v0.2.0-66) (2022-08-25)


### Docs 📃

* **plugins/auth/helpers:** add jsdoc comments for model-methods in auth plugin ([5dd8c9d](https://github.com/zyndex-drive/server/commit/5dd8c9da779de6c54f5063aad34b9f52a3ecdc1d))


### Code Refactoring 🖌

* **plugins/db:** properly give spacing, arrange the folder properly ([2f880f3](https://github.com/zyndex-drive/server/commit/2f880f397143845db0ce4239ce221627472b42ce))
* **plugins/misc:** make exports consistent across files ([33fd62d](https://github.com/zyndex-drive/server/commit/33fd62df44d54ff3e4514d989af6624f59c5439d))


### Build System 🏗

* **package:** add cross-env package and update commands ([920ec0c](https://github.com/zyndex-drive/server/commit/920ec0cd45b6e8a0192e13d8c665ec492182ba49))
* **packages:** add winston and luxon for logger functionality ([0adcd7e](https://github.com/zyndex-drive/server/commit/0adcd7e2c6068c032dd0167ad814bb68ff2284df))


### Features 🔥

* **plugins/axios:** add request start and end time to axios interceptor ([9da847e](https://github.com/zyndex-drive/server/commit/9da847e2337e7621eec7bcbb493e16469f9c3f3f))
* **plugins/logger:** write a logger function using winston and log it to a file ([a2e72fb](https://github.com/zyndex-drive/server/commit/a2e72fb3c5442a1a32f27a33bcd186e58b57cae3))
* **plugins:** use the new logger function instead of console.log ([109d0e2](https://github.com/zyndex-drive/server/commit/109d0e2014b92ffe2bd9fafe765a2190e57a6478))

## [0.2.0-65](https://github.com/zyndex-drive/server/compare/v0.2.0-64...v0.2.0-65) (2022-08-17)


Expand Down
2 changes: 1 addition & 1 deletion app.js

Large diffs are not rendered by default.

22 changes: 13 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zyndex-server",
"version": "0.2.0-65",
"version": "0.2.0-66",
"description": "Backend Server for Handling Zyndex Frontend Requests",
"main": "app.js",
"engines": {
Expand All @@ -15,15 +15,15 @@
"release:patch": "standard-version --release-as patch --sign",
"release:minor": "standard-version --release-as minor --sign",
"release:major": "standard-version --release-as major --sign",
"test": "set NODE_ENV=test && ts-mocha --paths tests/**/*.spec.ts -r 'tests/require'",
"test:api": "set NODE_ENV=test && ts-mocha --paths tests/api/**/*.spec.ts -r 'tests/require'",
"test:unit": "set NODE_ENV=test && ts-mocha --paths tests/unit/**/*.spec.ts -r 'tests/require'",
"test:single": "set NODE_ENV=test && ts-mocha -r 'tests/require'",
"test:report": "set NODE_ENV=test && ts-mocha --paths tests/api/**/*.spec.ts -r 'tests/require' --reporter mocha-simple-html-reporter --reporter-options output=test-report.html",
"serve:dev": "set NODE_ENV=development && nodemon --ignore tests/ -r tsconfig-paths/register src/app.ts",
"build:tsc": "set NODE_ENV=production && webpack",
"test": "cross-env NODE_ENV=test ts-mocha --paths tests/**/*.spec.ts -r 'tests/require'",
"test:api": "cross-env NODE_ENV=test ts-mocha --paths tests/api/**/*.spec.ts -r 'tests/require'",
"test:unit": "cross-env NODE_ENV=test ts-mocha --paths tests/unit/**/*.spec.ts -r 'tests/require'",
"test:single": "cross-env NODE_ENV=test ts-mocha -r 'tests/require'",
"test:report": "cross-env NODE_ENV=test ts-mocha --paths tests/api/**/*.spec.ts -r 'tests/require' --reporter mocha-simple-html-reporter --reporter-options output=test-report.html",
"serve:dev": "cross-env NODE_ENV=development nodemon --ignore tests/ -r tsconfig-paths/register src/app.ts",
"build:tsc": "cross-env NODE_ENV=production webpack",
"build:prepare": "bash ./scripts/prepare-build.sh",
"start": "set NODE_ENV=production && node app.js"
"start": "cross-env NODE_ENV=production node app.js"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -63,6 +63,7 @@
"got": "^11.8.3",
"helmet": "^4.6.0",
"jose": "^4.8.1",
"luxon": "^3.0.1",
"mathjs": "^10.5.1",
"mongoose": "^5.13.14",
"morgan": "^1.10.0",
Expand All @@ -78,6 +79,7 @@
"query-string": "^7.1.1",
"request-ip": "^2.1.3",
"uuid": "^8.3.2",
"winston": "^3.8.1",
"x-xss-protection": "^2.0.0"
},
"devDependencies": {
Expand All @@ -91,6 +93,7 @@
"@types/expect": "^24.3.0",
"@types/express": "^4.17.13",
"@types/http-server": "^0.12.1",
"@types/luxon": "^3",
"@types/mathjs": "^9.4.2",
"@types/mocha": "^8.2.3",
"@types/morgan": "^1.9.3",
Expand All @@ -112,6 +115,7 @@
"chai-http": "^4.3.0",
"commitizen": "^4.2.4",
"copy-webpack-plugin": "^10.2.4",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
Expand Down
Loading

0 comments on commit 6328108

Please sign in to comment.